Reputation: 85
If kube-master or etcd service down in my kubernetes cluster, can my Pod/Service still work? Also, if the network is still work?
Upvotes: 5
Views: 723
Reputation: 13941
The containers in a pod continue to run, yes. If the master components are not available this means no new pods/services can be launched, but existing ones continue to operate. Note that this behaviour is also one of the good practices and lessons learned from Borg.
Upvotes: 5