Skip to content

Istio

Referências


Helm Install

helm repo add istio https://istio-release.storage.googleapis.com/charts
helm repo update
# Istio Base install
helm upgrade --install istio-base istio/base -n istio-system --create-namespace
# Istio istiod install
helm upgrade --install istiod istio/istiod -n istio-system
# Istio ingress install
helm upgrade --install istio-ingress istio/gateway -n istio-ingress --create-namespace

kubectl label namespace istio-ingress istio-injection=enabled

Validação

helm ls -n istio-system
helm ls -n istio-ingress