diff options
author | Tomáš Levora <t.levora@partner.samsung.com> | 2019-02-13 12:48:18 +0100 |
---|---|---|
committer | Tomáš Levora <t.levora@partner.samsung.com> | 2019-02-15 09:43:25 +0100 |
commit | 813d7f251f9e65f47f3198852adc04b271000f78 (patch) | |
tree | de7265c5e3e04c4fcef3d9639dff4c34c2e8ede0 /build/creating_data | |
parent | e056345e8136959616622fbdeadc45851521b830 (diff) |
Adding updated list files for ONAP 3.0.1
This change is adding updated resources lists for offline-installer for
the tag onap_3.0.1
It's fixing some issues messed by wrongly done rebase in a previous
patch and sets some default values
Issue-ID: OOM-1615
Change-Id: I58001860d4accdf89cacd315d1af81240aee1303
Signed-off-by: Tomáš Levora <t.levora@partner.samsung.com>
Diffstat (limited to 'build/creating_data')
-rwxr-xr-x | build/creating_data/download-bin-tools.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/creating_data/download-bin-tools.sh b/build/creating_data/download-bin-tools.sh index 3213ea56..d363bde9 100755 --- a/build/creating_data/download-bin-tools.sh +++ b/build/creating_data/download-bin-tools.sh @@ -20,7 +20,7 @@ usage () { echo "Usage:" echo -e "./$(basename $0) <project version> [destination directory]\n" echo "Examples:" - echo " ./$(basename $0) onap_2.0.0 ./git-repo" + echo " ./$(basename $0) onap_3.0.0 ./git-repo" } if [ "${1}" == "-h" ] || [ -z "${1}" ] || [ -z "${2}"]; then @@ -37,6 +37,9 @@ if [ "${TAG}" == onap_2.0.0 ]; then elif [ "${TAG}" == onap_3.0.0 ]; then KUBECTL_VERSION=1.11.2 HELM_VERSION=2.9.1 +else + KUBECTL_VERSION=1.11.2 + HELM_VERSION=2.9.1 fi mkdir -p "$OUTDIR" |