diff options
author | Jack Lucas <jflucas@research.att.com> | 2019-07-22 11:06:29 -0400 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2019-07-22 11:18:30 -0400 |
commit | b36dee48ba9ae2a081ebba51cc4f5bea509321fe (patch) | |
tree | 5aed01f18dca000414554a1075e3c1eed573ad07 /k8s-bootstrap-container/load-plugins.sh | |
parent | fdfcdfaf73ec4f443f7bea0f9350d4e9e75cfdbb (diff) |
Update k8s & dmaap plugins
Also remove blueprint-based deployment of dashboard (now being done via Helm)
Issue-ID: DCAEGEN2-1651
Issue-ID: DCAEGEN2-1653
Issue-ID: DCAEGEN2-1667
Issue-ID: DCAEGEN2-1670
Issue-ID: DCAEGEN2-1318
Change-Id: I5d7b88d2bc6ed508f5500a1df553745f44d660af
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'k8s-bootstrap-container/load-plugins.sh')
-rwxr-xr-x | k8s-bootstrap-container/load-plugins.sh | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/k8s-bootstrap-container/load-plugins.sh b/k8s-bootstrap-container/load-plugins.sh new file mode 100755 index 0000000..70abae9 --- /dev/null +++ b/k8s-bootstrap-container/load-plugins.sh @@ -0,0 +1,62 @@ +#!/bin/bash +# ============LICENSE_START======================================================= +# org.onap.dcae +# ================================================================================ +# Copyright (c) 2018-2019 AT&T Intellectual Property. All rights reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +# +# ECOMP is a trademark and service mark of AT&T Intellectual Property. + +# Pull plugin archives from repos +# $1 is the DCAE repo URL +# $2 is the CCSDK repo URL +# (This script runs at Docker image build time) +# +set -x +DEST=wagons + +# For DCAE, starting in R5, we pull down wagons directly +DCAEPLUGINFILES=\ +"\ +k8splugin/1.4.13/k8splugin-1.4.13-py27-none-linux_x86_64.wgn +k8splugin/1.6.0/k8splugin-1.6.0-py27-none-linux_x86_64.wgn +relationshipplugin/1.0.0/relationshipplugin-1.0.0-py27-none-any.wgn +clamppolicyplugin/1.0.0/clamppolicyplugin-1.0.0-py27-none-any.wgn +dcaepolicyplugin/2.3.0/dcaepolicyplugin-2.3.0-py27-none-any.wgn \ +" + +# For CCSDK, we pull down the wagon files directly +CCSDKPLUGINFILES=\ +"\ +plugins/pgaas-1.1.0-py27-none-any.wgn +plugins/dmaap-1.3.5-py27-none-any.wgn +plugins/sshkeyshare-1.0.0-py27-none-any.wgn +plugins/helm-4.0.0-py27-none-linux_x86_64.wgn +" + +# Copy a set of wagons from a repo +# $1 -- repo baseURL +# $2 -- list of paths to wagons in the repo +function get_wagons { + for wagon in $2 + do + target=$(basename ${wagon}) + curl -Ss $1/${wagon} > ${DEST}/${target} + done +} + +mkdir ${DEST} +get_wagons $1 "${DCAEPLUGINFILES}" +get_wagons $2 "${CCSDKPLUGINFILES}" |