mirror of https://github.com/istio/istio.io.git
Fix defaultRevision documentation in helm install (#13420)
* Fix defaultRevision documentation in helm install * Update snips.sh
This commit is contained in:
parent
f5f910f2e2
commit
fadbb5c908
|
@ -46,12 +46,12 @@ You can display the default values of configuration parameters using the `helm s
|
||||||
1. Install the Istio base chart which contains cluster-wide Custom Resource Definitions (CRDs) which must be installed prior to the deployment of the Istio control plane:
|
1. Install the Istio base chart which contains cluster-wide Custom Resource Definitions (CRDs) which must be installed prior to the deployment of the Istio control plane:
|
||||||
|
|
||||||
{{< warning >}}
|
{{< warning >}}
|
||||||
When performing a revisioned installation, the base chart requires the `--defaultRevision` value to be set for resource
|
When performing a revisioned installation, the base chart requires the `--set defaultRevision=<revision>` value to be set for resource
|
||||||
validation to function. More information on the `--defaultRevision` option can be found in the Helm upgrade documentation.
|
validation to function. Below we install the `default` revision, so `--set defaultRevision=default` is configured.
|
||||||
{{< /warning >}}
|
{{< /warning >}}
|
||||||
|
|
||||||
{{< text syntax=bash snip_id=install_base >}}
|
{{< text syntax=bash snip_id=install_base >}}
|
||||||
$ helm install istio-base istio/base -n istio-system
|
$ helm install istio-base istio/base -n istio-system --set defaultRevision=default
|
||||||
{{< /text >}}
|
{{< /text >}}
|
||||||
|
|
||||||
1. Validate the CRD installation with the `helm ls` command:
|
1. Validate the CRD installation with the `helm ls` command:
|
||||||
|
|
|
@ -26,7 +26,7 @@ kubectl create namespace istio-system
|
||||||
}
|
}
|
||||||
|
|
||||||
snip_install_base() {
|
snip_install_base() {
|
||||||
helm install istio-base istio/base -n istio-system
|
helm install istio-base istio/base -n istio-system --set defaultRevision=default
|
||||||
}
|
}
|
||||||
|
|
||||||
snip_installation_steps_4() {
|
snip_installation_steps_4() {
|
||||||
|
|
Loading…
Reference in New Issue