diff --git a/docs/src/charm/tutorial/basic-operations.md b/docs/src/charm/tutorial/basic-operations.md index 23d607629..f43011c20 100644 --- a/docs/src/charm/tutorial/basic-operations.md +++ b/docs/src/charm/tutorial/basic-operations.md @@ -22,10 +22,11 @@ add more units to the `k8s` application: juju add-unit k8s -n 1 ``` -```{tip} -For high availability, we recommend deploying at least three `k8s` charm units. Use `juju status` to view all the units in your cluster and monitor their status. + +```{tip} +For high availability, we recommend deploying at least three `k8s` charm units. ``` Similarly, you can add more worker nodes when your workload demands increase: @@ -67,7 +68,8 @@ If you don't already have `kubectl`, it can be installed from a snap: sudo snap install kubectl --classic ``` -If you have just installed it, you should also create a file to contain the configuration: +If you have just installed it, you should also create a file to contain +the configuration: ``` mkdir ~/.kube diff --git a/docs/src/charm/tutorial/getting-started.md b/docs/src/charm/tutorial/getting-started.md index 266318eb0..1e3dd5eff 100644 --- a/docs/src/charm/tutorial/getting-started.md +++ b/docs/src/charm/tutorial/getting-started.md @@ -110,8 +110,10 @@ juju integrate k8s k8s-worker:containerd juju integrate k8s k8s-worker:cos-tokens ``` -After a short time, the worker node will share information with the control plane -and be joined to the cluster. +After a short time, the worker node will share information with the +control plane and be joined to the cluster. Use +`juju status --relations` to monitor the status of your units and their +established relations. ## Next steps