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