Thank you for installing {{ .Chart.Name | title }}. Your release is named {{ .Release.Name | title }}. To get started running application with Istio, execute the following steps: {{- if index .Values "sidecarInjectorWebhook" "enabled" }} 1. Label namespace that application object will be deployed to by the following command (take default namespace as an example) $ kubectl label namespace default istio-injection=enabled $ kubectl get namespace -L istio-injection 2. Deploy your applications $ kubectl apply -f .yaml {{- else }} 1. Download the latest release package to get sidecar injection tool $ curl -L https://git.io/getLatestIstio | sh - $ mv istio-* istio-latest $ export PATH="$PATH:$PWD/istio-latest/bin" 2. Deploy your application by manually injecting envoy sidecar with `istioctl kube-inject` $ kubectl apply -f <(istioctl kube-inject -f .yaml) {{- end }} For more information on running Istio, visit: https://istio.io/