Ignore error on first kiali apply (#9048)

This commit is contained in:
Eric Van Norman 2021-02-23 21:25:19 -06:00 committed by GitHub
parent 44e0690da9
commit 87e8f20093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
;;