summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLusheng Ji <lji@research.att.com>2018-09-17 13:37:47 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-17 13:37:47 +0000
commit164d883342daf2ce8d4392a26e21678107a3826a (patch)
treea7e46d7bd4c541484189b80dbea7965f536b4327
parent956075296cbe830ce79d84a9ef87ce2f7f7426dc (diff)
parent6ccc560bf70113cd90ed8702f6fdd5d96fb02e49 (diff)
Merge "Update dcae bootstrap to include r3 services"
-rwxr-xr-xk8s-bootstrap-container/bootstrap.sh7
-rwxr-xr-xk8s-bootstrap-container/load-blueprints.sh3
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