Add line-wrapping for multi-cluster Helm commands (#3193)

Currently, the command line snippet for setting up multi-cluster Istio
with Helm is confined to a single line. This makes it difficult to read
without having to scroll horizontally to read the entire command.

Update the command to be multi-line.

Signed-off-by: Nick Travers <n.e.travers@gmail.com>
This commit is contained in:
Nick Travers 2019-02-05 09:48:43 -08:00 committed by Martin Taillefer
parent 2eebc0a3d5
commit aa02682143
1 changed files with 9 additions and 1 deletions

View File

@ -169,7 +169,15 @@ perform a manual sidecar injection refer to the [manual sidecar example](#manual
1. Install the Helm chart for the `istio-remote` with the following command:
{{< text bash >}}
$ helm install install/kubernetes/helm/istio-remote --name istio-remote --namespace istio-system --set global.remotePilotAddress=${PILOT_POD_IP} --set global.remotePolicyAddress=${POLICY_POD_IP} --set global.remoteTelemetryAddress=${TELEMETRY_POD_IP} --set global.proxy.envoyStatsd.enabled=true --set global.proxy.envoyStatsd.host=${STATSD_POD_IP} --set global.remoteZipkinAddress=${ZIPKIN_POD_IP}
$ helm install install/kubernetes/helm/istio-remote \
--name istio-remote \
--namespace istio-system \
--set global.remotePilotAddress=${PILOT_POD_IP} \
--set global.remotePolicyAddress=${POLICY_POD_IP} \
--set global.remoteTelemetryAddress=${TELEMETRY_POD_IP} \
--set global.proxy.envoyStatsd.enabled=true \
--set global.proxy.envoyStatsd.host=${STATSD_POD_IP} \
--set global.remoteZipkinAddress=${ZIPKIN_POD_IP}
{{< /text >}}
{{% /tab %}}