aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2020-12-02 12:17:20 +0100
committermrichomme <morgan.richomme@orange.com>2020-12-14 15:08:20 +0100
commit1a43fdbb3cd4725d6184c9f52cce054031abbb68 (patch)
treefa5a260f298d5f14b02912d0f56cb0496376b33a
parent844d0c16a8423fb8ba49410398c286bb83bd0c9b (diff)
[INFRA] Make helm3 runnable
Helm3 was downloaded but not made runnable. Issue-ID: REQ-442 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com> Change-Id: I4b7732bfbda99ecba3731b6d22c59b9bc1ce1fbe (cherry picked from commit ebbba8cbb9d9b268062027f3445fa2dd3b7d1bb8)
-rw-r--r--infra-healthcheck/docker/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/infra-healthcheck/docker/Dockerfile b/infra-healthcheck/docker/Dockerfile
index 287823c..e288bd7 100644
--- a/infra-healthcheck/docker/Dockerfile
+++ b/infra-healthcheck/docker/Dockerfile
@@ -2,6 +2,7 @@ FROM opnfv/xtesting
ARG KUBERNETES_VERSION="v1.15.11"
ARG HELM_VERSION="v2.16.6"
+ARG HELM3_VERSION="v3.3.4"
ARG ONAP_TESTS_TAG=guilin
ARG ONAP_TAG=guilin
@@ -20,8 +21,10 @@ RUN set -x && \
chmod +x /usr/local/bin/kubectl && \
adduser kubectl -Du 2342 -h /config && \
wget https://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm && \
+ wget https://get.helm.sh/helm-${HELM3_VERSION}-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm3 && \
wget -O /check_for_ingress_and_nodeports.py https://git.onap.org/integration/plain/test/security/check_for_ingress_and_nodeports.py?h=$ONAP_TAG &&\
chmod +x /usr/local/bin/helm && \
+ chmod +x /usr/local/bin/helm3 && \
pip3 install --upgrade pip && \
pip3 install --no-cache-dir -r upper-constraints.txt && \
pip3 install --no-cache-dir \