1
0
mirror of https://github.com/helm/chart-testing.git synced 2026-02-05 09:45:14 +01:00

Bump helm , kubectl versions (#259)

Signed-off-by: Ram <1331672+chukka@users.noreply.github.com>
This commit is contained in:
Ram
2020-08-14 20:17:23 +05:30
committed by GitHub
parent f0403b0dea
commit 8d3f5b101e
2 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ jobs:
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
helm_version=v3.1.2
helm_version=v3.3.0
curl -fsSLO "https://get.helm.sh/helm-$helm_version-linux-amd64.tar.gz"
sudo mkdir -p "/usr/local/helm-$helm_version"
sudo tar -xzf "helm-$helm_version-linux-amd64.tar.gz" -C "/usr/local/helm-$helm_version"

View File

@@ -8,7 +8,7 @@ RUN apk --no-cache add \
py3-pip \
py3-wheel \
python3 && \
pip install --upgrade pip==20.2.1
pip install --upgrade pip==20.2.2
# Install a YAML Linter
ARG yamllint_version=1.24.2
@@ -21,14 +21,14 @@ LABEL yamale_version=$yamale_version
RUN pip install "yamale==$yamale_version"
# Install kubectl
ARG kubectl_version=v1.18.0
ARG kubectl_version=v1.18.6
LABEL kubectl_version=$kubectl_version
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$kubectl_version/bin/linux/amd64/kubectl" && \
chmod +x kubectl && \
mv kubectl /usr/local/bin/
# Install Helm
ARG helm_version=v3.2.4
ARG helm_version=v3.3.0
LABEL helm_version=$helm_version
RUN curl -LO "https://get.helm.sh/helm-$helm_version-linux-amd64.tar.gz" && \
mkdir -p "/usr/local/helm-$helm_version" && \