Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Neste documento, mostramos como desativar a entrada empacotada para um cluster de usuário no
Google Distributed Cloud.
Por padrão, a entrada empacotada é ativada nos clusters de usuário. Isso significa que as implantações
istiod e istio-ingress estão em execução. Para mais informações, consulte
Componentes de entrada.
Se você quiser usar uma instalação completa do
Cloud Service Mesh em um cluster de usuário, convém
desativar a entrada agrupada. Isso ocorre porque a entrada agrupada não é necessária quando
o Cloud Service Mesh está totalmente instalado e há possíveis conflitos entre
a entrada agrupada e o Cloud Service Mesh.
Se você quiser ativar a entrada agrupada para um cluster de usuário atual que tenha
a entrada agrupada desativada, edite o arquivo de configuração do cluster de usuário e execute
gkectl update cluster.
[[["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-07-22 UTC."],[],[],null,["# Disable bundled ingress\n\nThis document shows how to disable bundled ingress for a user cluster in\nGoogle Distributed Cloud.\n\nBy default, bundled ingress is enabled in user clusters. This means that the\n`istiod` and `istio-ingress` Deployments are running. For more information, see\n[Ingress components](/kubernetes-engine/distributed-cloud/vmware/docs/how-to/create-service-ingress#ingress_components).\n\nIf you want to use a full installation of\n[Cloud Service Mesh](/service-mesh/docs/overview) in a user cluster, you might want\nto disable bundled ingress. This is because bundled ingress is not needed when\nCloud Service Mesh is fully installed, and there are potential conflicts between\nbundled ingress and Cloud Service Mesh.\n\nDisable bundled ingress for a new cluster\n-----------------------------------------\n\nCreate a user cluster as described in\n[Create a user cluster](/kubernetes-engine/distributed-cloud/vmware/docs/how-to/create-user-cluster).\n\nAs you fill in your user cluster configuration file:\n\n- Set `disableBundledIngress` to `true`.\n- Do not specify a value for `loadBalancer.vips.ingressVIP`.\n\n```\napiVersion: v1\nkind: UserCluster\n...\ndisableBundledIngress: true\n...\nloadBalancer:\n vips:\n controlPlaneVIP: 172.16.21.30\n ingressVIP:\n```\n\nDisable bundled ingress for an existing cluster\n-----------------------------------------------\n\nIn your existing user cluster configuration file:\n\n- Set `disableBundledIngress` to `true`.\n- Remove the `loadBalancer.vips.ingressVIP` value.\n\nUpdate the cluster:\n\n```\ngkectl update cluster --kubeconfig ADMIN_CLUSTER_KUBECONFIG --config USER_CLUSTER_CONFIG\n```\n\nReplace the following:\n\n- \u003cvar translate=\"no\"\u003eADMIN_CLUSTER_KUBECONFIG\u003c/var\u003e: the path of the admin cluster kubeconfig\n file\n\n- \u003cvar translate=\"no\"\u003eUSER_CLUSTER_CONFIG\u003c/var\u003e: the path of the user cluster configuration\n file\n\nManual load balancing\n---------------------\n\nIf your cluster uses manual load balancing and you want to disable bundled\ningress, do not specify values for the following fields:\n\n- `loadBalancer.manualLB.ingressHTTPSNodePort`\n- `loadBalancer.manualLB.ingressHTTPNodePort`\n\n```\nloadBalancer:\n Kind: ManaulLB\n manualLB:\n ingressHTTPSNodePort:\n ingressHTTPNodePort:\n controlPlaneNodePort: 30562\n```\n\nEnable bundled ingress for an existing cluster\n----------------------------------------------\n\nIf you want to enable bundled ingress for an existing user cluster that has\nbundled ingress disabled, edit the user cluster configuration file, and run\n`gkectl update cluster`.\n\nRelated documents\n-----------------\n\n- [Overview of load balancing](/kubernetes-engine/distributed-cloud/vmware/docs/how-to/setup-load-balance)\n- [Create a Service and an Ingress](/kubernetes-engine/distributed-cloud/vmware/docs/how-to/create-service-ingress)"]]