1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
kubectl create namespace istio-system kubectl label namespace istio-system istio-injection=enabled
helm repo add istio.io https://storage.googleapis.com/istio-release/releases/1.3.4/charts/
helm search repo istio
helm pull istio.io/istio-init --untar
helm install istio istio.io/istio-init -n istio-system
kubectl get crds -n istio-system | grep istio.io |wc -l 23 #打印出23就完成
kubectl get pods -n istio-system
|