I setup my cluster with one master and two nodes. I can create pods on nodes. If my master node fails (reboot) when I use kubeadm reset and then kubeadm init I lost all my pods, deployments, services.
Am I losting my pods because reset? What should I do?
Some similar questions:
https://stackpointcloud.com/community/question/how-do-i-restart-my-kubernetes-cluster
vi /etc/sysconfig/kubelet(on CentOS 7) and insert following line:KUBELET_EXTRA_ARGS=--fail-swap-on=false. systemd starts kubelet automatically or you can do it manually (see here: github.com/kubernetes/kubernetes/issues/… ) - snukone