-
Basically title. I was just wondering, since this is the advertised default setting in kube.tf. What are the downsides of distributing the control-plane nodes? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You typically want your control-plane as highly available as possible, since without a control-plane, no changes in pods can occur, including spawning new ones. The biggest downside is that whenever the cloud provider has maintenance or an outage, the chance of something being down is higher than when you run everything together, however the impact is lower. |
Beta Was this translation helpful? Give feedback.
-
What about latency? I heard that highish latency can also disrupt a cluster. maybe @mysticaltech can also give is opinion? |
Beta Was this translation helpful? Give feedback.
You typically want your control-plane as highly available as possible, since without a control-plane, no changes in pods can occur, including spawning new ones.
The biggest downside is that whenever the cloud provider has maintenance or an outage, the chance of something being down is higher than when you run everything together, however the impact is lower.