How to reset K3s cluster pods

2.5k Views Asked by At

I have a k3s cluster with following pods:

kube-system   pod/calico-node-xxxx                          
kube-system   pod/calico-kube-controllers-xxxxxx   
kube-system   pod/metrics-server-xxxxx
kube-system   pod/local-path-provisioner-xxxxx
kube-system   pod/coredns-xxxxx

How can I reset (stop and start the pods again) the pods either with command (kubectl maybe) or any script?

2

There are 2 best solutions below

2
On BEST ANSWER

To reset a pod, you can just delete it. If it's managed by deployment (pods in your question should be), they should be recreated automatically.

kubectl delete pod <pod-name> <pod2-name> ... -n <namespace>

If the pods you want to reset, have common label, you can filter them with --selector flag

kubectl delete pods --selector=<label-name>=<label-value> -n <namespace>

However, if you changed the deployments somehow, you will need to apply the unmodified manifest.

kubectl apply -f <yaml-file>
0
On

Warning: - This will reset your whole cluster and delete all running data. This is not the exact answer but best answer. take 1 min only. Just uninstall by running below command

 sudo /usr/local/bin/k3s-uninstall.sh

Then install a fresh cluster with below command

curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="server --disable=traefik" sh -

Then export var using below command

export KUBECONFIG=/etc/rancher/k3s/k3s.yaml

Also it may complain about some k3s config file access so

sudo chmod 444 /etc/rancher/k3s/k3s.yaml