summaryrefslogtreecommitdiffstats
path: root/k8s-bootstrap-container/build-plugins.sh
diff options
context:
space:
mode:
authorJack Lucas <jflucas@research.att.com>2018-08-17 12:58:51 +0000
committerJack Lucas <jflucas@research.att.com>2018-08-17 12:59:18 +0000
commitb3350fa9629b558c5bdba5ff8d5e5d670d150204 (patch)
tree685408c5be271694b14186faf5e28197615b271a /k8s-bootstrap-container/build-plugins.sh
parent960fb86f0baf3d24a2b56d487fdfa7d25e847961 (diff)
Add code to enhance k8s bootstrap
- Make bootstrap container continue to run after initial bootstrap done - Do deployments in parallel where feasible - Accommodate deployments with no input files - Test to see if actions (uploads, installs, etc.) are needed before doing them Issue-ID: DCAEGEN2-594 Change-Id: Ie188c1fd69695479593aa82b516e5504a849099c Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'k8s-bootstrap-container/build-plugins.sh')
-rwxr-xr-xk8s-bootstrap-container/build-plugins.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/k8s-bootstrap-container/build-plugins.sh b/k8s-bootstrap-container/build-plugins.sh
index 383e5e9..adf8c7c 100755
--- a/k8s-bootstrap-container/build-plugins.sh
+++ b/k8s-bootstrap-container/build-plugins.sh
@@ -31,8 +31,7 @@ DEST=wagons
# For DCAE, we get zips of the archives and build wagons
DCAEPLUGINFILES=\
"\
-k8splugin/1.4.0/k8splugin-1.4.0.tgz
-dockerplugin/3.2.0/dockerplugin-3.2.0.tgz
+k8splugin/1.4.1/k8splugin-1.4.1.tgz
relationshipplugin/1.0.0/relationshipplugin-1.0.0.tgz
dcaepolicyplugin/2.3.0/dcaepolicyplugin-2.3.0.tgz \
"
@@ -56,7 +55,7 @@ function build {
target=$(basename ${plugin})
curl -Ss $1/${plugin} > ${target}
tar zxvf ${target} --strip-components=2 -C work
- wagon create -t tar.gz -o ${DEST} -r work/requirements.txt --validate ./work
+ wagon create -t tar.gz -o ${DEST} -r work/requirements.txt --validate ./work
rm -rf work
done
}