Skip to content
Snippets Groups Projects

Test Helm chart in CI pipeline

Merged Sören Henning requested to merge helm-testing-in-ci into master
Files
3
+ 15
0
ARG DOCKER_VERSION=latest
FROM docker:${DOCKER_VERSION}
ARG KUBECTL_VERSION=v1.21.3
RUN apk add -U wget bash openssl
# install kubectl
RUN wget -q -O /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl && \
chmod +x /usr/local/bin/kubectl
RUN echo https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}
# install k3d
RUN wget -q -O - https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash
# install Helm
RUN wget -q -O - https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
Loading