From 70c1616a2d8b5d41c6a4b27a70d5d420b3a7847f Mon Sep 17 00:00:00 2001 From: "Alexander \"Ace\" Olofsson" Date: Tue, 20 Dec 2022 20:24:55 +0100 Subject: [PATCH] Use alpine/helm for tests --- .gitlab-ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1628ced..4263a16 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,17 +4,13 @@ stages: - deploy lint:charts: - image: - name: codenest/helm - entrypoint: ["/bin/sh", "-c"] + image: alpine/helm stage: test script: - helm lint charts/* pages: - image: - name: codenest/helm - entrypoint: ["/bin/sh", "-c"] + image: alpine/helm stage: deploy before_script: - grep 'repository:' charts/*/Chart.yaml | awk '{ print $3 }' | uniq | xargs -rn1 sh -c 'helm repo add $(basename $0) $0'