From 3dda3b30a8376d1cd0ac1fae0d1e0f198945eb72 Mon Sep 17 00:00:00 2001 From: mtail Date: Sun, 11 Mar 2018 11:34:24 -0700 Subject: [PATCH] Fix bad formatting. --- _docs/setup/kubernetes/quick-start.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/_docs/setup/kubernetes/quick-start.md b/_docs/setup/kubernetes/quick-start.md index 9343ae9b99..f7f6e794ef 100644 --- a/_docs/setup/kubernetes/quick-start.md +++ b/_docs/setup/kubernetes/quick-start.md @@ -105,24 +105,24 @@ export PATH=$PWD/bin:$PATH 1. Install Istio's core components. Choose one of the two _**mutually exclusive**_ options below or alternately install with the [Helm Chart]({{home}}/docs/setup/kubernetes/helm.html): - a) Install Istio without enabling [mutual TLS authentication]({{home}}/docs/concepts/security/mutual-tls.html) between sidecars. - Choose this option for clusters with existing applications, applications where services with an - Istio sidecar need to be able to communicate with other non-Istio Kubernetes services, and - applications that use [liveliness and readiness probes](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/), - headless services, or StatefulSets. + a) Install Istio without enabling [mutual TLS authentication]({{home}}/docs/concepts/security/mutual-tls.html) between sidecars. + Choose this option for clusters with existing applications, applications where services with an + Istio sidecar need to be able to communicate with other non-Istio Kubernetes services, and + applications that use [liveliness and readiness probes](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/), + headless services, or StatefulSets. ```bash kubectl apply -f install/kubernetes/istio.yaml ``` - _**OR**_ + _**OR**_ - b) Install Istio and enable [mutual TLS authentication]({{home}}/docs/concepts/security/mutual-tls.html) between sidecars.: + b) Install Istio and enable [mutual TLS authentication]({{home}}/docs/concepts/security/mutual-tls.html) between sidecars.: ```bash kubectl apply -f install/kubernetes/istio-auth.yaml ``` - Both options create the `istio-system` namespace along with the required RBAC permissions, - and deploy Istio-Pilot, Istio-Mixer, Istio-Ingress, and Istio-CA (Certificate Authority). + Both options create the `istio-system` namespace along with the required RBAC permissions, + and deploy Istio-Pilot, Istio-Mixer, Istio-Ingress, and Istio-CA (Certificate Authority). 1. *Optional:* If your cluster has Kubernetes version 1.9 or greater, and you wish to enable automatic proxy injection, install the [sidecar injector webhook]({{home}}/docs/setup/kubernetes/sidecar-injection.html#automatic-sidecar-injection).