I have a K3s setup with calico pods [calico-node-
& calico-kube-controllers-
] running. On uninstalling K3s, calico pods get deleted but I see that calicoctl
and iptables -S
commands still running and shows data.
I want to delete calico (including calicoctl and Iptables created by calico) completely. Which commands will help me to do so ?
K3s uninstalltion command: /usr/local/bin/k3s-uninstall.sh
deletes all k3s pods including calico, but calicoctl
and iptables -S
still works.
PS: I already tried few things -
- Command
kubectl delete -f https://raw.githubusercontent.com/aws/amazon-vpc-cni-k8s/release-1.5/config/v1.5/calico.yaml
deletes thecalico-node-
butcalico-kube-controller
,calicoctl
andiptables -S
are still present Kubectl delete
commands in this que also not working for me, after executing these two commands stillcalicoctl
andiptables -S
are present
Calico does not provide any automatic uninstallers that I am aware of. You'll have to handle this yourself.