Fix Helm values in dual-stack installation page (#16885)

Fix Helm chart sample by moving pilot.env and gateways
to the top level instead of under values, matching the
actual chart structure.

Related to: https://github.com/istio/istio/discussions/57723

Signed-off-by: Sridhar Gaddam <sgaddam@redhat.com>
This commit is contained in:
Sridhar Gaddam 2025-09-25 13:57:31 +05:30 committed by GitHub
parent aeeb5983e1
commit af7d460aaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 10 deletions

View File

@ -43,6 +43,7 @@ spec:
pilot:
env:
ISTIO_DUAL_STACK: "true"
ipFamilyPolicy: RequireDualStack
# The below values are optional and can be used based on your requirements
gateways:
istio-ingressgateway:
@ -60,16 +61,16 @@ meshConfig:
defaultConfig:
proxyMetadata:
ISTIO_DUAL_STACK: "true"
values:
pilot:
env:
ISTIO_DUAL_STACK: "true"
# The below values are optional and can be used based on your requirements
gateways:
istio-ingressgateway:
ipFamilyPolicy: RequireDualStack
istio-egressgateway:
ipFamilyPolicy: RequireDualStack
pilot:
env:
ISTIO_DUAL_STACK: "true"
ipFamilyPolicy: RequireDualStack
# The below values are optional and can be used based on your requirements
gateways:
istio-ingressgateway:
ipFamilyPolicy: RequireDualStack
istio-egressgateway:
ipFamilyPolicy: RequireDualStack
{{< /text >}}
{{< /tab >}}