From dda9b82dff27429d9710db5069686553e367728b Mon Sep 17 00:00:00 2001 From: Lusheng Ji Date: Fri, 4 May 2018 16:02:38 -0400 Subject: Do not quit if BP deployment times out Issue-ID: DCAEGEN2-489 Change-Id: Ia21f31a73f1414e6869807c793f26ed143d8c9cf Signed-off-by: Lusheng Ji --- k8s-bootstrap-container/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s-bootstrap-container/bootstrap.sh b/k8s-bootstrap-container/bootstrap.sh index e043460..cea06ce 100755 --- a/k8s-bootstrap-container/bootstrap.sh +++ b/k8s-bootstrap-container/bootstrap.sh @@ -81,6 +81,8 @@ do done set -e +set +e +# (don't let failure of one stop the script. this is likely due to image pull taking too long) # Deploy platform components deploy config_binding_service k8s-config_binding_service.yaml k8s-config_binding_service-inputs.yaml deploy inventory k8s-inventory.yaml k8s-inventory-inputs.yaml @@ -89,8 +91,6 @@ deploy policy_handler k8s-policy_handler.yaml k8s-policy_handler-inputs.yaml deploy pgaas_initdb k8s-pgaas-initdb.yaml k8s-pgaas-initdb-inputs.yaml # Deploy service components -# (don't let failure of one stop the script) -set +e deploy tca k8s-tca.yaml k8s-tca-inputs.yaml deploy ves k8s-ves.yaml k8s-ves-inputs.yaml # holmes_rules must be deployed before holmes_engine -- cgit 1.2.3-korg