Last active
October 18, 2023 22:03
-
-
Save ams0/320e25cd993f4d9bc0023838951b53a6 to your computer and use it in GitHub Desktop.
Install Istio Ambient Mesh with Helm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Ambient Mesh with Helm Charts | |
REPO="https://istio-release.storage.googleapis.com/charts" | |
VERSION=1.19.0 | |
helm_opts="upgrade -i --namespace istio-system --create-namespace --repo ${REPO} --version ${VERSION}" | |
# base | |
helm $(echo $helm_opts) istio-base base | |
# istiod | |
helm $(echo $helm_opts) istiod istiod --values - <<EOF | |
meshConfig: | |
defaultConfig: | |
proxyMetadata: | |
ISTIO_META_ENABLE_HBONE: "true" | |
# Telemetry API is used with ambient instead of EnvoyFilters | |
defaultProviders: | |
metrics: | |
- prometheus | |
extensionProviders: | |
- name: prometheus | |
prometheus: {} | |
pilot: | |
env: | |
VERIFY_CERTIFICATE_AT_CLIENT: "true" | |
ENABLE_AUTO_SNI: "true" | |
PILOT_ENABLE_HBONE: "true" | |
CA_TRUSTED_NODE_ACCOUNTS: "istio-system/ztunnel,kube-system/ztunnel" | |
PILOT_ENABLE_AMBIENT_CONTROLLERS: "true" | |
EOF | |
# istio-cni | |
helm $(echo $helm_opts) istio-cni cni --values - <<EOF | |
cni: | |
logLevel: info | |
privileged: true | |
ambient: | |
enabled: true | |
EOF | |
# ztunnel | |
helm $(echo $helm_opts) ztunnel ztunnel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment