github.com/replicatedcom/ship@v0.50.0/integration/init/istio-1.0.3/expected/.ship/upstream/templates/NOTES.txt (about)

     1  Thank you for installing {{ .Chart.Name }}.
     2  
     3  Your release is named {{ .Release.Name }}.
     4  
     5  To get started running application with Istio, execute the following steps:
     6  
     7  {{- if index .Values "sidecarInjectorWebhook" "enabled" }}
     8  1. Label namespace that application object will be deployed to by the following command (take default namespace as an example)
     9  
    10  $ kubectl label namespace default istio-injection=enabled
    11  $ kubectl get namespace -L istio-injection
    12  
    13  2. Deploy your applications
    14  
    15  $ kubectl apply -f <your-application>.yaml
    16  {{- else }}
    17  1. Download the latest release package to get sidecar injection tool
    18  
    19  $ curl -L https://git.io/getLatestIstio | sh -
    20  $ mv istio-* istio-latest
    21  $ export PATH="$PATH:$PWD/istio-latest/bin"
    22  
    23  2. Deploy your application by manually injecting envoy sidecar with `istioctl kube-inject`
    24  
    25  $ kubectl apply -f <(istioctl kube-inject -f <your-application>.yaml)
    26  {{- end }}
    27  
    28  For more information on running Istio, visit:
    29  https://istio.io/