summaryrefslogtreecommitdiffstats
path: root/k8s-bootstrap-container/load-blueprints.sh
blob: 20374276c60fbf2620796abf0fb7a1304abf6668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
# Load DCAE blueprints/inputs onto container
# $1 Blueprint repo base URL
# Expect blueprints to be at <base URL>/blueprints

set -x

BLUEPRINTS=\
"
k8s-config_binding_service.yaml  \
k8s-deployment_handler.yaml  \
k8s-holmes-engine.yaml \
k8s-holmes-rules.yaml \
k8s-inventory.yaml  \
k8s-policy_handler.yaml \
k8s-pgaas-initdb.yaml \
k8s-tca.yaml \
k8s-ves.yaml
"

BPDEST=blueprints
mkdir ${BPDEST}

# Download blueprints
for bp in ${BLUEPRINTS}
do
    curl -Ss $1/blueprints/${bp} > ${BPDEST}/$(basename ${bp})
done