Skip to content

Commit

Permalink
Update Helm to 2.16.9 (#233)
Browse files Browse the repository at this point in the history
* update alpine / helm / kubectl

Signed-off-by: Carlos Panato <[email protected]>

* update python/pip

Signed-off-by: Carlos Panato <[email protected]>

update yaml lint to 1.21.0

Signed-off-by: Carlos Panato <[email protected]>
  • Loading branch information
cpanato authored Aug 10, 2020
1 parent 96ef110 commit ed345e2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
FROM alpine:3.11
FROM alpine:3.12

RUN apk --no-cache add \
curl \
git \
libc6-compat \
openssh-client \
python \
py-crcmod \
py-pip && \
pip install --upgrade pip==18.1
py3-pip \
py3-wheel \
python3 && \
pip install --upgrade pip==20.2.1

# Install a YAML Linter
ARG YAML_LINT_VERSION=1.13.0
ARG YAML_LINT_VERSION=1.24.2
RUN pip install "yamllint==$YAML_LINT_VERSION"

# Install Yamale YAML schema validator
ARG YAMALE_VERSION=1.8.0
ARG YAMALE_VERSION=3.0.2
RUN pip install "yamale==$YAMALE_VERSION"

# Install kubectl
ARG KUBECTL_VERSION=v1.16.0
ARG KUBECTL_VERSION=v1.18.6
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=v2.16.5
ARG HELM_VERSION=v2.16.9
RUN curl -LO "https://kubernetes-helm.storage.googleapis.com/helm-$HELM_VERSION-linux-amd64.tar.gz" && \
mkdir -p "/usr/local/helm-$HELM_VERSION" && \
tar -xzf "helm-$HELM_VERSION-linux-amd64.tar.gz" -C "/usr/local/helm-$HELM_VERSION" && \
Expand Down

0 comments on commit ed345e2

Please sign in to comment.