From 1c4dd738e151086bd4ebf4f4d47ab53bf9ebaaa3 Mon Sep 17 00:00:00 2001 From: David Nuzik Date: Thu, 5 Dec 2019 13:17:26 -0700 Subject: [PATCH] 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. --- content/k3s/latest/en/installation/airgap/_index.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/content/k3s/latest/en/installation/airgap/_index.md b/content/k3s/latest/en/installation/airgap/_index.md index f919b3768ce..e96967163c1 100644 --- a/content/k3s/latest/en/installation/airgap/_index.md +++ b/content/k3s/latest/en/installation/airgap/_index.md @@ -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 ```