Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Dokumen ini menunjukkan cara menonaktifkan ingress paket untuk cluster pengguna di Google Distributed Cloud.
Secara default, ingress yang dipaketkan diaktifkan di cluster pengguna. Artinya, Deployment istiod dan istio-ingress sedang berjalan. Untuk mengetahui informasi selengkapnya, lihat
Komponen ingress.
Jika ingin menggunakan penginstalan lengkap
Cloud Service Mesh di cluster pengguna, sebaiknya
nonaktifkan ingress yang dipaketkan. Hal ini karena ingress yang dipaketkan tidak diperlukan saat
Cloud Service Mesh diinstal sepenuhnya, dan ada potensi konflik antara
ingress yang dipaketkan dan Cloud Service Mesh.
Mengaktifkan ingress yang dipaketkan untuk cluster yang ada
Jika Anda ingin mengaktifkan ingress paket untuk cluster pengguna yang ada yang telah menonaktifkan ingress paket, edit file konfigurasi cluster pengguna, dan jalankan gkectl update cluster.
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Sulit dipahami","hardToUnderstand","thumb-down"],["Informasi atau kode contoh salah","incorrectInformationOrSampleCode","thumb-down"],["Informasi/contoh yang saya butuhkan tidak ada","missingTheInformationSamplesINeed","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["Terakhir diperbarui pada 2025-07-22 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)"]]