From f1352dbb47e8f6c7aed4785c48fe5049a3178ffd Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Fri, 25 Feb 2022 01:50:45 +0700 Subject: [PATCH] docs(tutorials): also remove kured on single node setup --- .../src/tutorials/single-node-cluster-adjustments.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/src/tutorials/single-node-cluster-adjustments.md b/docs/src/tutorials/single-node-cluster-adjustments.md index 8415c87a..ddbea81c 100644 --- a/docs/src/tutorials/single-node-cluster-adjustments.md +++ b/docs/src/tutorials/single-node-cluster-adjustments.md @@ -11,13 +11,15 @@ Set the `defaultClassReplicaCount` to 1: {{#include ../../../system/longhorn-system/values.yaml}} ``` -## Disable automated system upgrade +## Disable automatic upgrade for OS and k3s -Because the system upgrade controller will try to drain the node, -the pods will have no place to go on a single node set up. - -Remove the system upgrade controller entirely: +Because they will try to drain the only node, the pods will have no place to go. +Remove them entirely: ```sh +rm -rf system/kured rm -rf system/system-upgrade ``` + +Commit and push the change. +You can revert it later when you add more nodes.