Fix K8s pod connection issues

When trying to deploy, if the following error pops up:

plugin type="calico" failed (add): error getting ClusterInformation

We need to delete the calico pods so we can deploy new pods:

# Get all calico pods:
kubectl -n kube-system get pods

# Delete all calico pods:
kubectl -n kube-system delete pod <calico-node-pod-name> --force # calico-node-12345

Scroll to Top