TRAFFIC_DIRECTOR: a infraestrutura principal de Google Cloud serve como o
plano de controle do Cloud Service Mesh.
ISTIOD: a instância gerenciada do istiod serve como o plano de controle do Cloud Service Mesh.
UPDATING: o cluster está sendo migrado entre implementações. Em breve, você
terá a implementação de TRAFFIC_DIRECTOR.
Se controlPlaneManagement.state: ACTIVE não aparecer, significa que você não
tem um plano de controle gerenciado. Para confirmar que você tem um plano de controle no cluster, verifique se há uma implantação istiod no namespace istio-system:
kubectl-nistio-systemgetdeployistiod
O resultado será assim:
NAME READY UP-TO-DATE AVAILABLE AGE
istiod 1/1 1 1 20m
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Informações incorretas ou exemplo de código","incorrectInformationOrSampleCode","thumb-down"],["Não contém as informações/amostras de que eu preciso","missingTheInformationSamplesINeed","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-08-19 UTC."],[],[],null,["# Check control plane implementation\n==================================\n\nRun the following command to identify your cluster's control plane implementation: \n\n gcloud container fleet mesh describe --project \u003cvar translate=\"no\"\u003eFLEET_PROJECT_ID\u003c/var\u003e\n\nThe output is similar to the following: \n\n ...\n membershipSpecs:\n projects/746296320118/locations/us-central1/memberships/demo-cluster-1:\n mesh:\n management: MANAGEMENT_AUTOMATIC\n membershipStates:\n projects/746296320118/locations/us-central1/memberships/demo-cluster-1:\n servicemesh:\n controlPlaneManagement:\n details:\n - code: REVISION_READY\n details: 'Ready: asm-managed'\n state: ACTIVE\n implementation: TRAFFIC_DIRECTOR\n ...\n\nThe possible values of the `implementation` are:\n\n- `TRAFFIC_DIRECTOR`: The core infrastructure of Google Cloud serves as the Cloud Service Mesh control plane.\n- `ISTIOD`: managed instance of istiod serves as the Cloud Service Mesh control plane.\n- `UPDATING`: The cluster is being migrated between implementations. Soon you will have the `TRAFFIC_DIRECTOR` implementation.\n\nIf you don't see `controlPlaneManagement.state: ACTIVE` this means you don't\nhave a managed control plane. To confirm that you have an in-cluster control\nplane, check for an `istiod` deployment in your `istio-system` namespace: \n\n kubectl -n istio-system get deploy istiod\n\nThe output is similar to the following: \n\n NAME READY UP-TO-DATE AVAILABLE AGE\n istiod 1/1 1 1 20m"]]