Federate zone control plane
With Kuma you can first start with just one zone control plane and then federate it to a multi-zone deployment. This way you can:
- see your mesh deployment in one centralized place
- connect multiple zones and introduce cross zone connectivity
- manage policies that are pushed to all zones
Prerequisites
-
Completed quickstart to set up a zone control plane with demo application
Start a global control plane
Start a new Kubernetes cluster
Currently, it’s not possible to deploy global and zone control plane in the same Kubernetes cluster, therefore we need a new Kubernetes cluster.
You can skip this step if you already have a Kubernetes cluster running. It can be a cluster running locally or in a public cloud like AWS EKS, GCP GKE, etc.
Setup the minikube tunnel
If you are using minikube for local testing, you can take advantage of the built-in minikube tunnel command. This command allows load balancer addresses to be provisioned using localhost.
Using nohup
will allow the tunnel to continue running should your current terminal session end.
Deploy a global control plane
We skip default mesh creation as we will bring mesh from zone control plane in the next steps.
Sync endpoint
Find and save the external IP and port of the kuma-global-zone-sync
service in the kuma-system
namespace:
If you are using minikube, you should use host.minikube.internal
to ensure networking works correctly.
Copy resources from zone to global control plane
To federate zone control plane without any traffic interruption, we need to copy resources like secrets, meshes etc. First, we need to expose API server of zone control plane:
Then we export resources:
And finally, we apply resources on global control plane
Connect zone control plane to global control plane
Update Helm deployment of zone control plane to configure connection to the global control plane.
Verify federation
To verify federation, first port-forward the API service from the global control plane to port 15681 to avoid collision with previous port forward.
And then navigate to 127.0.0.1:15681/gui to see the GUI.
You should eventually see
- a zone in list of zones
- policies including
redis
MeshTrafficPermission that we applied in the quickstart guide. - data plane proxies for the demo application that we installed in the quickstart guide.
Apply policy on global control plane
We can check policy synchronization from global control plane to zone control plane by applying a policy on global control plane:
If we execute the following command:
The policy should be eventually available in zone control plane
Next steps
- Read the multi-zone docs to learn more about this deployment model and cross-zone connectivity.