git clone --depth 1 -b 1.4.0 https://github.com/istio/istiocd istio
helm install install/kubernetes/helm/istio-init --name istio-init --namespace istio-system# Wait for all Istio CRDs to be created:kubectl -n istio-system wait --for=condition=complete job --all
helm install install/kubernetes/helm/istio --name istio --namespace istio-system
Allow sidecar injector on all containers in default namespace.
kubectl label namespace default istio-injection=enabled# Verify auto injection workedkubectl get namespace -L istio-injection
# Backcd ../# Remove istio directoryrm -R istio