Skip to content

Commit

Permalink
fix: address markdownlint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cardoe committed Apr 8, 2024
1 parent 867e1c7 commit 51e7866
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/install-understack-ubuntu-k3s.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ git clone https://github.com/rackerlabs/understack.git
## Install Pre-requisites

Install some packages we'll need later and some useful troubleshooting utilities.

```bash
apt-get -y install curl jq net-tools telnet git apt-transport-https wget
```

## Update Ubuntu

Update to the latest ubuntu packages and reboot if necessary.

```bash
apt-get -y update
```
Expand Down Expand Up @@ -90,13 +92,15 @@ K3s installer should give us a working kubernetes.
The kubectl config from k3s is in `/etc/rancher/k3s/k3s.yaml` and kubectl will automatically use it.

See everything running in the new k3s kubernetes cluster:

```bash
kubectl get all --all-namespaces
```

## Install UnderStack

Get the repo:

```bash
git clone https://github.com/rackerlabs/understack.git
```
Expand All @@ -108,6 +112,7 @@ References:
### Bootstrap UnderStack

Run the initial bootstrap:

```bash
kubectl kustomize --enable-helm bootstrap | kubectl apply --server-side -f -
```
Expand Down Expand Up @@ -331,6 +336,7 @@ Load the secrets values file from the cluster:
```

Label the kubernetes nodes as being openstack enabled:

```bash
kubectl label node $(kubectl get nodes -o 'jsonpath={.items[*].metadata.name}') openstack-control-plane=enabled
```
Expand Down Expand Up @@ -399,7 +405,7 @@ kubectl exec -it openstack-admin-client -n openstack -- openstack baremetal cond

If everything is working, you should see output similar to the following:

```
```bash
# kubectl exec -it openstack-admin-client -n openstack -- openstack baremetal conductor list
+---------------------------------------------+-----------------+-------+
| Hostname | Conductor Group | Alive |
Expand Down

0 comments on commit 51e7866

Please sign in to comment.