mirror of https://github.com/istio/istio.io.git
Update ambient install command to fix error from zsh (#13976)
* Update ambient install command to fix error from zsh Error I hit when install ambient: ``` istioctl manifest generate --set profile=ambient --set components.ingressGateways[0].enabled=true --set components.ingressGateways[0].name=istio-ingressgateway zsh: no matches found: components.ingressGateways[0].enabled=true ``` Thx to @howardjohn for pointing out missing quotes around special chars. * update snips
This commit is contained in:
parent
cf99ad325c
commit
10082fd476
|
@ -69,7 +69,7 @@ Follow these steps to get started with ambient:
|
|||
{{< tab name="Istio APIs" category-value="istio-apis" >}}
|
||||
|
||||
{{< text bash >}}
|
||||
$ istioctl install --set profile=ambient --set components.ingressGateways[0].enabled=true --set components.ingressGateways[0].name=istio-ingressgateway --skip-confirmation
|
||||
$ istioctl install --set profile=ambient --set "components.ingressGateways[0].enabled=true" --set "components.ingressGateways[0].name=istio-ingressgateway" --skip-confirmation
|
||||
{{< /text >}}
|
||||
|
||||
After running the above command, you’ll get the following output that indicates
|
||||
|
|
|
@ -26,7 +26,7 @@ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
|
|||
}
|
||||
|
||||
snip_download_and_install_3() {
|
||||
istioctl install --set values.pilot.env.PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true --set profile=ambient --set components.ingressGateways[0].enabled=true --set components.ingressGateways[0].name=istio-ingressgateway --skip-confirmation
|
||||
istioctl install --set values.pilot.env.PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true --set profile=ambient --set "components.ingressGateways[0].enabled=true" --set "components.ingressGateways[0].name=istio-ingressgateway" --skip-confirmation
|
||||
}
|
||||
|
||||
snip_download_and_install_5() {
|
||||
|
|
Loading…
Reference in New Issue