From 011b7dd4986f7801b45271c99a72b243d03f34f1 Mon Sep 17 00:00:00 2001 From: QuantumEnigmaa Date: Wed, 31 Jul 2024 15:52:54 +0200 Subject: [PATCH] add helm templating test --- .circleci/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ec283f..564e977 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,14 @@ version: 2.1 orbs: architect: giantswarm/architect@5.3.1 +jobs: + template-chart: + docker: + - image: giantswarm/helm-chart-testing:v3.11.0 + steps: + - checkout + - run: cd helm/grafana && helm dep up + - run: helm template helm/grafana workflows: package-and-push-chart-on-tag: @@ -31,6 +39,15 @@ workflows: filters: tags: only: /^v.*/ + + - template-chart: + name: "template-chart" + filters: + branches: + ignore: + - master + requires: + - "app-catalog" - architect/run-tests-with-ats: name: run-chart-tests-with-ats