-
Is your feature request related to a problem? Please describe. ClusterAPI management cluster can only access workload cluster by the kubeconfig, I found out that there is way to add annotation "etcd.k3s.cattle.io/remove" to remove etcd member, i want to know if there is such annotation as well to remove node? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
That is for removing the node from the etcd cluster without deleting it. If you just want it gone, use None of these will uninstall k3s though. If you want k3s to stop and uninstall, that requires external action. Rancher uses a system agent that run on the node as a separate service to handle this, as well as installation, configuration, and snapshot management. |
Beta Was this translation helpful? Give feedback.
That is for removing the node from the etcd cluster without deleting it. If you just want it gone, use
kubectl delete node
. Note that it will attempt to rejoin if you restart the service though.None of these will uninstall k3s though. If you want k3s to stop and uninstall, that requires external action. Rancher uses a system agent that run on the node as a separate service to handle this, as well as installation, configuration, and snapshot management.