update chart requirements (#2876)

* update chart requirements

adding `helm dep up` which is required for the install to succeed

* note about relative refs

* remove redundant space

* grammer and passive voice

Co-Authored-By: itaysk <itay@itaysk.com>

* helm repo add
This commit is contained in:
Itay Shakury 2018-11-29 01:33:22 +02:00 committed by Martin Taillefer
parent 777abf274a
commit 44d9bba881
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,8 @@ plane and the sidecars for the Istio data plane.
## Installation steps
The following commands have relative references in the Istio directory. You must execute the commands in Istio's root directory.
1. If using a Helm version prior to 2.10.0, install Istio's [Custom Resource Definitions](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/#customresourcedefinitions)
via `kubectl apply`, and wait a few seconds for the CRDs to be committed in the kube-apiserver:
@ -96,6 +98,8 @@ to manage the lifecycle of Istio.
1. Install Istio:
{{< text bash >}}
$ helm repo add istio.io "https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts"
$ helm dep update install/kubernetes/helm/istio
$ helm install install/kubernetes/helm/istio --name istio --namespace istio-system
{{< /text >}}