Reputation: 40628
If possible I'd like setup a multi-zone Kubernetes cluster on GCE but when creating a new cluster from the web console I can only select a single zone:
Is it possible to have a multi-zone or even multi-region Kubernetes cluster on GCE?
Upvotes: 1
Views: 519
Reputation: 18230
Google Container Engine is a zonal service, which means that each cluster runs wholly within a single zone.
If you want to do this manually you can follow these instructions to create a new instance template in a different zone and spin up nodes that connect to your existing Kubernetes master. Just be aware that you will be paying for the bandwidth between the nodes and the master between different zones even if they are in the same region (see the GCE Network Pricing).
Upvotes: 2