Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinbojko committed Jun 18, 2020
1 parent 1bed9c3 commit 865ee46
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
ARG SP_CERTS="itoacr.azurecr.io/ito/sp-certs:0.6"
FROM ${SP_CERTS} AS certs
FROM alpine:3.11.6 AS build
ENV KUBE_LATEST_VERSION=v1.17.6
ENV HELM_VERSION=v3.2.3
FROM alpine:3.12.0 AS build
ENV KUBE_LATEST_VERSION=v1.17.7
ENV HELM_VERSION=v3.2.4
ENV HELM_FILENAME=helm-${HELM_VERSION}-linux-amd64.tar.gz
LABEL VERSION="v0.0.1"
LABEL VERSION="v0.2.1"
LABEL RELEASE="pipetools-k8s"
LABEL MAINTAINER="marcinbojko"
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
SHELL ["/bin/ash", "-euo", "pipefail", "-c"]
# shellcheck disable=SC2169
RUN apk add --no-cache --update -t deps ca-certificates curl bash gettext tar gzip openssl openssh rsync python3 python3-dev py3-pip \
&& pip3 install --upgrade pip yamllint dos2unix jmespath \
&& curl -sL https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -o /bin/kubectl && chmod +x /bin/kubectl \
&& curl -sL https://get.helm.sh/${HELM_FILENAME} | tar xz && mv linux-amd64/helm /bin/helm && rm -rf linux-amd64 && chmod +x /bin/helm \
&& curl -fsL https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -o /bin/kubectl && chmod +x /bin/kubectl \
&& curl -sfL https://get.helm.sh/${HELM_FILENAME} | tar xz && mv linux-amd64/helm /bin/helm && rm -rf linux-amd64 && chmod +x /bin/helm \
&& mkdir -p ~/.ssh \
&& eval "$(ssh-agent -s)" \
&& echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config \
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
pipetools-k8s
# pipetools-k8s

## Revision

|version|helm version|kubectl version|
|-------|------------|---------------|
|0.1.0 |v3.2.3 |v1.17.6 |
|0.2.1 |v3.2.4 |v1.17.7 |

0 comments on commit 865ee46

Please sign in to comment.