Updated doc as proxyv2 is now the default global proxy image (#1371)

This commit is contained in:
Yossi Mesika 2018-05-30 01:05:01 +03:00 committed by Shriram Rajagopalan
parent c62a07e67f
commit 7b6c55c25b
2 changed files with 6 additions and 6 deletions

View File

@ -84,7 +84,7 @@ To start the application, follow the instructions below corresponding to your Is
use the following command
```command
$ kubectl apply -f <(ISTIO_PROXY_IMAGE=proxyv2 istioctl kube-inject --debug -f samples/bookinfo/kube/bookinfo.yaml)
$ kubectl apply -f <(istioctl kube-inject --debug -f samples/bookinfo/kube/bookinfo.yaml)
```
The `istioctl kube-inject` command is used to manually modify the `bookinfo.yaml`

View File

@ -31,13 +31,13 @@ recommended.
(requires Kubernetes >=1.9.0):
```command
$ helm template install/kubernetes/helm/istio --name istio --namespace istio-system --set sidecar-injector.enabled=true --set global.proxy.image=proxyv2
$ helm template install/kubernetes/helm/istio --name istio --namespace istio-system
```
* Without sidecar injection:
* Without the sidecar injection webhook:
```command
$ helm template install/kubernetes/helm/istio --name istio --namespace istio-system > $HOME/istio.yaml
$ helm template install/kubernetes/helm/istio --name istio --namespace istio-system --set sidecarInjectorWebhook.enabled=false > $HOME/istio.yaml
```
1. Install the components via the manifest:
@ -72,13 +72,13 @@ to manage the lifecycle of Istio.
* With [automatic sidecar injection](/docs/setup/kubernetes/sidecar-injection/#automatic-sidecar-injection) (requires Kubernetes >=1.9.0):
```command
$ helm install install/kubernetes/helm/istio --name istio --namespace istio-system --set global.proxy.image=proxyv2
$ helm install install/kubernetes/helm/istio --name istio --namespace istio-system
```
* Without the sidecar injection webhook:
```command
$ helm install install/kubernetes/helm/istio --name istio --namespace istio-system --set sidecarInjectorWebhook.enabled=false --set global.proxy.image=proxyv2
$ helm install install/kubernetes/helm/istio --name istio --namespace istio-system --set sidecarInjectorWebhook.enabled=false
```
## Customization with Helm