Small tweak to K3s airgap page

- Changes the Install K3s code block so it's in two separate codeblocks so that someone won't confuse it as one command for each node.
This commit is contained in:
David Nuzik
2019-12-05 13:17:26 -07:00
parent 43a85b4de2
commit 1c4dd738e1
@@ -52,13 +52,15 @@ Also obtain the K3s install script at https://get.k3s.io
Place the binary in `/usr/local/bin` on each node.
Place the install script anywhere on each node, name it `install.sh`.
Install K3s on each node. The example below shows how to do this for a server or an agent (worker):
Install K3s on each server:
```
# K3s Server
INSTALL_K3S_SKIP_DOWNLOAD=true ./install.sh
```
# K3s Agent
Install K3s on each agent:
```
INSTALL_K3S_SKIP_DOWNLOAD=true K3S_URL=https://myserver:6443 K3S_TOKEN=mynodetoken ./install.sh
```