Skip to content

Commit 1a0156c

Browse files
Update all tests to use the latest Helm version (#4238)
1 parent 231024b commit 1a0156c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build/build-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ RUN mkdir -p /go/src/k8s.io && cd /go/src/k8s.io && \
6363
git clone -b kubernetes-${KUBERNETES_VER} --depth=3 https://github.com/kubernetes/code-generator.git
6464

6565
# install Helm package manager
66-
ENV HELM_VER 3.10.3
66+
ENV HELM_VER 3.18.4
6767
ENV HELM_URL https://get.helm.sh/helm-v${HELM_VER}-linux-amd64.tar.gz
6868
RUN curl -L ${HELM_URL} > /tmp/helm.tar.gz \
6969
&& tar -zxvf /tmp/helm.tar.gz -C /tmp \

build/e2e-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN curl -LO https://dl.k8s.io/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &
2121
mv ./kubectl /usr/local/bin/kubectl
2222

2323
# install Helm package manager
24-
ENV HELM_VER 3.5.0
24+
ENV HELM_VER 3.18.4
2525
ENV HELM_URL https://get.helm.sh/helm-v${HELM_VER}-linux-amd64.tar.gz
2626
RUN curl -L ${HELM_URL} > /tmp/helm.tar.gz \
2727
&& tar -zxvf /tmp/helm.tar.gz -C /tmp \

test/upgrade/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN curl -LO https://dl.k8s.io/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &
2828
mv ./kubectl /usr/local/bin/kubectl
2929

3030
# install Helm package manager
31-
ENV HELM_VER=3.16.3
31+
ENV HELM_VER=3.18.4
3232
ENV HELM_URL=https://get.helm.sh/helm-v${HELM_VER}-linux-amd64.tar.gz
3333
RUN curl -L ${HELM_URL} > /tmp/helm.tar.gz \
3434
&& tar -zxvf /tmp/helm.tar.gz -C /tmp \

0 commit comments

Comments
 (0)