From 3f3d3a5c1270723f9f76bd393c8d502b439387fb Mon Sep 17 00:00:00 2001 From: djpbessems Date: Fri, 1 Apr 2022 21:50:04 +0200 Subject: [PATCH] Fix parameter value --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6237d19..faec950 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ mount -a ## K3s cluster On first node (replace `` with the correct value): ```shell -curl -sfL https://get.k3s.io | sh -s - server --cluster-init --disable local-path,traefik --tls-san +curl -sfL https://get.k3s.io | sh -s - server --cluster-init --disable local-storage,traefik --tls-san cat /var/lib/rancher/k3s/server/token kubectl config view --raw ``` @@ -43,7 +43,7 @@ EOF ``` On subsequent nodes (replace `` and `` with the correct values): ```shell -curl -sfL https://get.k3s.io | K3S_URL=https://:6443 K3S_TOKEN= sh -s - server --server --disable local-path,traefik +curl -sfL https://get.k3s.io | K3S_URL=https://:6443 K3S_TOKEN= sh -s - server --server --disable local-storage,traefik ``` ### 0) Configure automatic updates