diff options
author | Jack Lucas <jflucas@research.att.com> | 2019-01-17 13:53:56 -0500 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2019-01-17 13:57:48 -0500 |
commit | 0025fda3bdc37f9cd1d436f9541eace023a0afc3 (patch) | |
tree | 2226390764927b84f6c514bc1fc94a762eefaf5f /k8s-bootstrap-container/bootstrap.sh | |
parent | 1d746685f1d61f36182d67ff7f24f0f0a18a4c66 (diff) |
Move CBS to Helm deployment
Stop including CBS blueprint in bootstrap container
Stop deploying the CBS blueprint in the bootstrap script
Change healthcheck so that it looks for Helm-deployed CBS
Issue-ID: DCAEGEN2-1090
Change-Id: Ifeba9768374045831e4d1f3f06a77ec9a79753c7
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'k8s-bootstrap-container/bootstrap.sh')
-rwxr-xr-x | k8s-bootstrap-container/bootstrap.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/k8s-bootstrap-container/bootstrap.sh b/k8s-bootstrap-container/bootstrap.sh index 43a0537..c037182 100755 --- a/k8s-bootstrap-container/bootstrap.sh +++ b/k8s-bootstrap-container/bootstrap.sh @@ -201,12 +201,9 @@ set +e # Deploy platform components # Allow for some parallelism to speed up the process. Probably could be somewhat more aggressive. -# config_binding_service and pgaas_initdb needed by others, but can execute in parallel -deploy config_binding_service k8s-config_binding_service.yaml k8s-config_binding_service-inputs.yaml & -CBS_PID=$! deploy pgaas_initdb k8s-pgaas-initdb.yaml k8s-pgaas-initdb-inputs.yaml & PG_PID=$! -wait ${CBS_PID} ${PG_PID} +wait ${PG_PID} # inventory, deployment_handler, and policy_handler can be deployed simultaneously deploy inventory k8s-inventory.yaml k8s-inventory-inputs.yaml & INV_PID=$! |