summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorTomáš Levora <t.levora@partner.samsung.com>2019-05-16 08:46:06 +0200
committerTomáš Levora <t.levora@partner.samsung.com>2019-05-16 09:41:42 +0200
commit5950fd75a7e3be99f8d0ab7caac9a0bed267387e (patch)
tree68e5809e0578de50c2c2184398e044068c973c5e /build
parent6f6a8122eecccd9d821b75cf96c02b53455838b1 (diff)
Update kubectl and helm binaries
kubectl and helm binaries need to be updated for proper usage with Dublin release kubectl: v1.13.5 helm: v2.12.3 Issue-ID: OOM-1858 Change-Id: I824362c8321317cbf0601ae2bd15ff39ef5c807e Signed-off-by: Tomáš Levora <t.levora@partner.samsung.com>
Diffstat (limited to 'build')
-rwxr-xr-xbuild/creating_data/download-bin-tools.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/creating_data/download-bin-tools.sh b/build/creating_data/download-bin-tools.sh
index a87fa204..9e6c7bff 100755
--- a/build/creating_data/download-bin-tools.sh
+++ b/build/creating_data/download-bin-tools.sh
@@ -1,6 +1,6 @@
# COPYRIGHT NOTICE STARTS HERE
#
-# Copyright 2018 © Samsung Electronics Co., Ltd.
+# Copyright 2018-2019 © Samsung Electronics Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@ usage () {
echo "Usage:"
echo -e "./$(basename $0) [destination directory]\n"
echo "Examples:"
- echo " ./$(basename $0) ./git-repo"
+ echo " ./$(basename $0) ./downloads"
}
if [ "${1}" == "-h" ] || [ -z "${1}" ] ; then
@@ -30,9 +30,9 @@ else
OUTDIR="${1}"
fi
-# we are keeping just casablanca support in casablanca branch
-KUBECTL_VERSION=${KUBECTL_VERSION:-1.11.2}
-HELM_VERSION=${HELM_VERSION:-2.9.1}
+# we are keeping just dublin support in dublin branch
+KUBECTL_VERSION=${KUBECTL_VERSION:-1.13.5}
+HELM_VERSION=${HELM_VERSION:-2.12.3}
mkdir -p "$OUTDIR"
cd "$OUTDIR"
@@ -42,7 +42,7 @@ download() {
url_file="${url%%\?*}"
file=$(basename "$url_file")
echo "Downloading $url"
- curl --retry 5 -y 10 -Y 10 --location "$url" -o "$file"
+ curl -s --retry 5 -y 10 -Y 10 --location "$url" -o "$file"
}
download "https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl"