mirror of https://github.com/istio/istio.io.git
Ignore error on first kiali apply (#9048)
This commit is contained in:
parent
44e0690da9
commit
87e8f20093
|
@ -37,7 +37,7 @@ function _deploy_and_wait_for_addons() {
|
|||
jaeger) kubectl apply -f "$JAEGER_MANIFEST_URL"
|
||||
_wait_for_deployment istio-system jaeger
|
||||
;;
|
||||
kiali) kubectl apply -f "$KIALI_MANIFEST_URL"
|
||||
kiali) kubectl apply -f "$KIALI_MANIFEST_URL" || true # ignore first errors
|
||||
kubectl apply -f "$KIALI_MANIFEST_URL" # Need to apply twice due to a reace condition
|
||||
_wait_for_deployment istio-system kiali
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue