From 9fcc075e083380114613d4f72fb7c3657c8ed5e6 Mon Sep 17 00:00:00 2001 From: "J.D. Stone" Date: Fri, 16 Jul 2021 17:07:21 -0700 Subject: [PATCH] Bump 'common' chart version & modify keywords (#5) * Bump 'common' chart version, update keywords, rename dir --- .github/workflows/lint-test.yaml | 4 ++-- charts/{igg-common => common}/.helmignore | 0 charts/{igg-common => common}/Chart.yaml | 6 +++--- charts/{igg-common => common}/templates/_capabilities.tpl | 0 charts/{igg-common => common}/templates/_labels.tpl | 0 charts/{igg-common => common}/templates/_names.tpl | 0 charts/{igg-common => common}/templates/_tplvalues.tpl | 0 charts/{igg-common => common}/values.yaml | 0 8 files changed, 5 insertions(+), 5 deletions(-) rename charts/{igg-common => common}/.helmignore (100%) rename charts/{igg-common => common}/Chart.yaml (89%) rename charts/{igg-common => common}/templates/_capabilities.tpl (100%) rename charts/{igg-common => common}/templates/_labels.tpl (100%) rename charts/{igg-common => common}/templates/_names.tpl (100%) rename charts/{igg-common => common}/templates/_tplvalues.tpl (100%) rename charts/{igg-common => common}/values.yaml (100%) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index adcf7ab..2638753 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -31,7 +31,7 @@ jobs: - name: Run chart-testing (list-changed) id: list-changed run: | - changed=$(ct list-changed --excluded-charts igg-common --config ct.yaml) + changed=$(ct list-changed --excluded-charts common --config ct.yaml) if [[ -n "$changed" ]]; then echo "::set-output name=changed::true" fi @@ -44,4 +44,4 @@ jobs: if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install) - run: ct install --excluded-charts igg-common --config ct.yaml + run: ct install --excluded-charts common --config ct.yaml diff --git a/charts/igg-common/.helmignore b/charts/common/.helmignore similarity index 100% rename from charts/igg-common/.helmignore rename to charts/common/.helmignore diff --git a/charts/igg-common/Chart.yaml b/charts/common/Chart.yaml similarity index 89% rename from charts/igg-common/Chart.yaml rename to charts/common/Chart.yaml index 8ce2f79..1c1fb21 100644 --- a/charts/igg-common/Chart.yaml +++ b/charts/common/Chart.yaml @@ -1,14 +1,14 @@ apiVersion: v2 -name: igg-common -version: 0.1.1 +name: common +version: 0.1.2 description: A Library Helm Chart for grouping common logic between Indiegogo charts. This chart is not deployable by itself. type: library keywords: - common - helper - template + - function - indiegogo - - igg home: https://github.com/indiegogo sources: - https://github.com/indiegogo diff --git a/charts/igg-common/templates/_capabilities.tpl b/charts/common/templates/_capabilities.tpl similarity index 100% rename from charts/igg-common/templates/_capabilities.tpl rename to charts/common/templates/_capabilities.tpl diff --git a/charts/igg-common/templates/_labels.tpl b/charts/common/templates/_labels.tpl similarity index 100% rename from charts/igg-common/templates/_labels.tpl rename to charts/common/templates/_labels.tpl diff --git a/charts/igg-common/templates/_names.tpl b/charts/common/templates/_names.tpl similarity index 100% rename from charts/igg-common/templates/_names.tpl rename to charts/common/templates/_names.tpl diff --git a/charts/igg-common/templates/_tplvalues.tpl b/charts/common/templates/_tplvalues.tpl similarity index 100% rename from charts/igg-common/templates/_tplvalues.tpl rename to charts/common/templates/_tplvalues.tpl diff --git a/charts/igg-common/values.yaml b/charts/common/values.yaml similarity index 100% rename from charts/igg-common/values.yaml rename to charts/common/values.yaml