From aa02682143c168020edc73060284835ae1a07ff5 Mon Sep 17 00:00:00 2001 From: Nick Travers Date: Tue, 5 Feb 2019 09:48:43 -0800 Subject: [PATCH] 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 --- .../setup/kubernetes/multicluster-install/vpn/index.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/docs/setup/kubernetes/multicluster-install/vpn/index.md b/content/docs/setup/kubernetes/multicluster-install/vpn/index.md index dd7c395b46..cf9972500e 100644 --- a/content/docs/setup/kubernetes/multicluster-install/vpn/index.md +++ b/content/docs/setup/kubernetes/multicluster-install/vpn/index.md @@ -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 %}}