이 문서에서는 Google Distributed Cloud에서 사용자 클러스터에 대해 번들 인그레스를 사용 중지하는 방법을 보여줍니다.
기본적으로 번들 인그레스는 사용자 클러스터에서 사용 설정됩니다. 즉, istiod 및 istio-ingress 배포가 실행됩니다. 자세한 내용은 인그레스 구성요소를 참조하세요.
사용자 클러스터에서 Cloud Service Mesh의 전체 설치를 사용하려면 번들 인그레스를 중지하는 것이 좋습니다. Cloud Service Mesh가 완전히 설치된 경우 번들 인그레스가 필요하지 않고 번들 인그레스와 Cloud Service Mesh 간에 충돌이 발생할 수 있기 때문입니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 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)"]]