From 6164a4044a516b2054729e5d8e1517bdd9ab33dc Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Tue, 21 Dec 2021 21:28:11 +1030 Subject: [PATCH] shortened some code lines due to broken styling that I can't figure out for the life of me --- posts/2021-08-09_servers_K3s on Odroid MC1s, a Guide.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/posts/2021-08-09_servers_K3s on Odroid MC1s, a Guide.md b/posts/2021-08-09_servers_K3s on Odroid MC1s, a Guide.md index 750c967..7da956a 100644 --- a/posts/2021-08-09_servers_K3s on Odroid MC1s, a Guide.md +++ b/posts/2021-08-09_servers_K3s on Odroid MC1s, a Guide.md @@ -102,7 +102,8 @@ Then run the following on the worker nodes, updating the command for each: #!shell # for workers # Fill this out ... - curl -sfL http://get.k3s.io | K3S_URL=https://:6443 K3S_TOKEN= K3S_NODE_NAME="odroid-mc1-X" sh -s - --docker + curl -sfL http://get.k3s.io | K3S_URL=https://:6443 K3S_TOKEN= + K3S_NODE_NAME="odroid-mc1-X" sh -s - --docker systemctl status k3s-agent @@ -199,9 +200,11 @@ YOURTOKEN = token from above servername = unique name for node (I use hostname) #!shell - curl -sfL https://get.k3s.io | K3S_TOKEN="YOURTOKEN" K3S_URL="https://[your server]:6443" K3S_NODE_NAME="servername" sh -z + curl -sfL https://get.k3s.io | K3S_TOKEN="YOURTOKEN" + K3S_URL="https://[your server]:6443" K3S_NODE_NAME="servername" sh -z # I used - apt install curl -y && curl -sfL https://get.k3s.io | K3S_TOKEN="YOURTOKEN" K3S_URL="https://[your server]:6443" K3S_NODE_NAME="servername" sh -z + apt install curl -y && curl -sfL https://get.k3s.io | + K3S_TOKEN="YOURTOKEN" K3S_URL="https://[your server]:6443" K3S_NODE_NAME="servername" sh -z Sadly this is where my notes ended as, although the install worked, all of the system pods were failing and thus I moved on to the method listed above.