Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Pod/Service still work if kube-master or etcd service down?

If kube-master or etcd service down in my kubernetes cluster, can my Pod/Service still work? Also, if the network is still work?

like image 504
X.G Avatar asked Nov 27 '15 06:11

X.G


1 Answers

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.

like image 161
Michael Hausenblas Avatar answered Sep 18 '22 17:09

Michael Hausenblas