So I have two hypervisors running the following Kubernetes VMs:
A) 1x K8s master, 1x k8s node
B) 1x K8s node
If hypervisor B goes offline, all pods still work, as designed. What happens to the cluster and the nodes when hypervisor A goes offline? Will all running pods on the hypervisor B K8s node still work, assuming I have node anti-affinity configured so that on every node at least one pod already runs?
Thanks!