diff --git a/.gitignore b/.gitignore index d7064d22..95ab7418 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ *.pyc *.swp .coverage +.idea/* + diff --git a/marketplace/deployer_helm2_base/Dockerfile b/marketplace/deployer_helm2_base/Dockerfile index 2046582d..b43d691b 100644 --- a/marketplace/deployer_helm2_base/Dockerfile +++ b/marketplace/deployer_helm2_base/Dockerfile @@ -26,7 +26,7 @@ RUN ln -s /opt/kubectl/1.17 /opt/kubectl/default RUN mkdir -p /bin/helm-downloaded \ && wget -q -O /bin/helm-downloaded/helm.tar.gz \ - https://get.helm.sh/helm-v2.16.9-linux-amd64.tar.gz \ + https://storage.googleapis.com/kubernetes-helm/helm-v2.17.0-linux-amd64.tar.gz \ && tar -zxvf /bin/helm-downloaded/helm.tar.gz -C /bin/helm-downloaded \ && mv /bin/helm-downloaded/linux-amd64/helm /bin/ \ && rm -rf /bin/helm-downloaded diff --git a/marketplace/deployer_helm_tiller_base/Dockerfile b/marketplace/deployer_helm_tiller_base/Dockerfile index baf162d4..bd7c0c9e 100644 --- a/marketplace/deployer_helm_tiller_base/Dockerfile +++ b/marketplace/deployer_helm_tiller_base/Dockerfile @@ -29,7 +29,7 @@ RUN ln -s /opt/kubectl/1.17 /opt/kubectl/default RUN mkdir -p /bin/helm-downloaded \ && wget -q -O /bin/helm-downloaded/helm.tar.gz \ - https://storage.googleapis.com/kubernetes-helm/helm-v2.10.0-linux-amd64.tar.gz \ + https://storage.googleapis.com/kubernetes-helm/helm-v2.17.0-linux-amd64.tar.gz \ && tar -zxvf /bin/helm-downloaded/helm.tar.gz -C /bin/helm-downloaded \ && mv /bin/helm-downloaded/linux-amd64/helm /bin/ \ && rm -rf /bin/helm-downloaded \ diff --git a/marketplace/dev/Dockerfile b/marketplace/dev/Dockerfile index 15a6806a..866d1f1f 100644 --- a/marketplace/dev/Dockerfile +++ b/marketplace/dev/Dockerfile @@ -45,7 +45,7 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \ RUN mkdir -p /bin/helm-downloaded \ && wget -q -O /bin/helm-downloaded/helm.tar.gz \ - https://storage.googleapis.com/kubernetes-helm/helm-v2.10.0-linux-amd64.tar.gz \ + https://storage.googleapis.com/kubernetes-helm/helm-v2.17.0-linux-amd64.tar.gz \ && tar -zxvf /bin/helm-downloaded/helm.tar.gz -C /bin/helm-downloaded \ && mv /bin/helm-downloaded/linux-amd64/helm /bin/ \ && rm -rf /bin/helm-downloaded \