From a06529b0d2ecfda238b02f3306a4ff384bd608d3 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Mon, 27 Jun 2022 21:24:27 +0200 Subject: [PATCH] ci(charts): Add publishing mechanism for helm charts --- .gitlab-ci.yml | 1 + charts/mok/.gitlab-ci.yaml | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 charts/mok/.gitlab-ci.yaml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 357211c19..5dbf3a8dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ --- include: - local: 'images/**/.gitlab-ci.yaml' + - local: 'charts/**/.gitlab-ci.yaml' stages: - release - build diff --git a/charts/mok/.gitlab-ci.yaml b/charts/mok/.gitlab-ci.yaml new file mode 100644 index 000000000..7251f20ad --- /dev/null +++ b/charts/mok/.gitlab-ci.yaml @@ -0,0 +1,11 @@ +build: + stage: build + image: quay.io/helmpack/chart-testing:v3.6.0 + script: + - export TMP_DIR=$(mktemp -d) + - helm package charts/* -d "$TMP_DIR" + - for i in $(ls $TMP_DIR/*.tgz); do curl --request POST --user "gitlab-ci-token:$CI_JOB_TOKEN" --form "chart=@${i}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/api/${CI_COMMIT_REF_SLUG}/charts"; done + rules: + - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push"' + changes: + - charts/mok/Chart.yaml -- GitLab