diff options
author | vagrant <vv770d@att.com> | 2018-09-16 07:00:06 +0000 |
---|---|---|
committer | vagrant <vv770d@att.com> | 2018-09-16 07:01:17 +0000 |
commit | 6ccc560bf70113cd90ed8702f6fdd5d96fb02e49 (patch) | |
tree | c75fe84adad5bc6d6310720a8b11cf5886afe270 | |
parent | bcb980423cdeff5c34e4eaeea9792b85a1810319 (diff) |
Update dcae bootstrap to include r3 services
Change-Id: I15eb15f91263a3c2d26b48e992733682b1673a6d
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-772
-rwxr-xr-x | k8s-bootstrap-container/bootstrap.sh | 7 | ||||
-rwxr-xr-x | k8s-bootstrap-container/load-blueprints.sh | 3 |
2 files changed, 6 insertions, 4 deletions
diff --git a/k8s-bootstrap-container/bootstrap.sh b/k8s-bootstrap-container/bootstrap.sh index 37c7e58..b4a05a7 100755 --- a/k8s-bootstrap-container/bootstrap.sh +++ b/k8s-bootstrap-container/bootstrap.sh @@ -220,8 +220,9 @@ wait ${INV_PID} ${DH_PID} ${PH_PID} # tca, ves, prh, hv-ves can be deployed simultaneously deploy tca k8s-tca.yaml k8s-tca-inputs.yaml & deploy ves k8s-ves.yaml k8s-ves-inputs.yaml & -deploy prh k8s-prh.yaml & -deploy hv-ves k8s-hv-ves.yaml & +deploy snmptrap k8s-snmptrap.yaml k8s-snmptrap-inputs.yaml & +deploy prh k8s-prh.yaml k8s-prh-inputs.yaml & +deploy hv-ves k8s-hv-ves.yaml k8s-hv_ves-inputs.yaml & # holmes_rules must be deployed before holmes_engine, but holmes_rules can go in parallel with other service components deploy holmes_rules k8s-holmes-rules.yaml k8s-holmes_rules-inputs.yaml deploy holmes_engine k8s-holmes-engine.yaml k8s-holmes_engine-inputs.yaml @@ -231,4 +232,4 @@ cfy deployments list # Continue running keep_running "Finished bootstrap steps." -echo "Exiting!"
\ No newline at end of file +echo "Exiting!" diff --git a/k8s-bootstrap-container/load-blueprints.sh b/k8s-bootstrap-container/load-blueprints.sh index ae7dc91..4bc8004 100755 --- a/k8s-bootstrap-container/load-blueprints.sh +++ b/k8s-bootstrap-container/load-blueprints.sh @@ -16,6 +16,7 @@ k8s-policy_handler.yaml \ k8s-pgaas-initdb.yaml \ k8s-tca.yaml \ k8s-ves.yaml \ +k8s-snmptrap.yaml \ k8s-prh.yaml \ k8s-hv-ves.yaml " @@ -27,4 +28,4 @@ mkdir ${BPDEST} for bp in ${BLUEPRINTS} do curl -Ss $1/blueprints/${bp} > ${BPDEST}/$(basename ${bp}) -done
\ No newline at end of file +done |