Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Questo documento mostra come disattivare l'ingresso in bundle per un cluster utente in
Google Distributed Cloud.
Per impostazione predefinita, l'ingresso in bundle è abilitato nei cluster utente. Ciò significa che i deployment istiod e istio-ingress sono in esecuzione. Per ulteriori informazioni, consulta
Componenti di ingresso.
Se vuoi utilizzare un'installazione completa di
Cloud Service Mesh in un cluster di utenti, potresti dover
disattivare l'ingresso incluso. Questo perché l'ingresso in bundle non è necessario quando Cloud Service Mesh è completamente installato e ci sono potenziali conflitti tra l'ingresso in bundle e Cloud Service Mesh.
Disattivare il traffico in entrata in bundle per un nuovo cluster
Attivare il traffico in entrata in bundle per un cluster esistente
Se vuoi attivare l'ingresso raggruppato per un cluster utente esistente per il quale è disabilitato, modifica il file di configurazione del cluster utente ed esegui gkectl update cluster.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Difficile da capire","hardToUnderstand","thumb-down"],["Informazioni o codice di esempio errati","incorrectInformationOrSampleCode","thumb-down"],["Mancano le informazioni o gli esempi di cui ho bisogno","missingTheInformationSamplesINeed","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-09-04 UTC."],[],[],null,["This 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\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\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\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\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- [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)"]]