gke mesh - getting sidecar to work on your cluster
After you have enable mesh in the cluster, the next thing to do is to deploy your application. But before that, you need to ensure your namespace has been annotated correctly using the following commands
kubectl label namespace test1 istio-injection=enabled --overwrite
kubectl annotate --overwrite namespace test1 mesh.cloud.google.com/proxy='{"managed":"true"}'
This contrasts with the traditional Istio setup, where sidecar injection is controlled by istio-injection=enabled. This provides seamless proxy upgrades.
Comments