2020-12-22 19:12:39 +00:00
|
|
|
name: Helm
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-02-18 10:27:10 +00:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- release-*
|
2020-12-22 19:12:39 +00:00
|
|
|
paths:
|
|
|
|
- 'deploy/charts/**'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'deploy/charts/**'
|
2021-02-18 10:27:10 +00:00
|
|
|
workflow_dispatch: {}
|
2020-12-22 19:12:39 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint-and-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 08:06:46 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-12-22 19:12:39 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Generate chart
|
|
|
|
run: |
|
2021-02-18 10:27:10 +00:00
|
|
|
make helm.generate
|
2020-12-22 19:12:39 +00:00
|
|
|
- name: Set up Helm
|
2023-01-03 21:11:59 +00:00
|
|
|
uses: azure/setup-helm@v3.5
|
2020-12-22 19:12:39 +00:00
|
|
|
with:
|
|
|
|
version: v3.4.2
|
|
|
|
|
2023-01-16 10:07:03 +00:00
|
|
|
- uses: actions/setup-python@v4.5.0
|
2020-12-22 19:12:39 +00:00
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
|
|
|
|
- name: Set up chart-testing
|
2022-10-04 20:08:29 +00:00
|
|
|
uses: helm/chart-testing-action@v2.3.1
|
2020-12-22 19:12:39 +00:00
|
|
|
|
|
|
|
- name: Run chart-testing (list-changed)
|
|
|
|
id: list-changed
|
|
|
|
run: |
|
|
|
|
changed=$(ct list-changed --config=.github/ci/ct.yaml)
|
|
|
|
if [[ -n "$changed" ]]; then
|
|
|
|
echo "::set-output name=changed::true"
|
|
|
|
fi
|
2023-03-16 00:05:03 +00:00
|
|
|
- name: Install chart unittest
|
|
|
|
run: |
|
|
|
|
helm env
|
|
|
|
helm plugin install https://github.com/helm-unittest/helm-unittest
|
2020-12-22 19:12:39 +00:00
|
|
|
- name: Run chart-testing (lint)
|
|
|
|
run: ct lint --config=.github/ci/ct.yaml
|
|
|
|
|
2023-03-16 00:05:03 +00:00
|
|
|
- name: Create kind cluster
|
2023-03-20 22:34:28 +00:00
|
|
|
uses: helm/kind-action@v1.5.0
|
2023-03-16 00:05:03 +00:00
|
|
|
if: steps.list-changed.outputs.changed == 'true'
|
|
|
|
|
|
|
|
- name: Run chart-testing (install)
|
|
|
|
run: ct install --config=.github/ci/ct.yaml --charts deploy/charts/external-secrets
|
|
|
|
if: steps.list-changed.outputs.changed == 'true'
|
|
|
|
|
|
|
|
- name: Run unitests
|
|
|
|
if: steps.list-changed.outputs.changed == 'true'
|
|
|
|
run: make helm.test
|
|
|
|
|
2021-04-30 22:23:51 +00:00
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-03-07 08:06:46 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-04-30 22:23:51 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Configure Git
|
|
|
|
run: |
|
|
|
|
git config user.name "$GITHUB_ACTOR"
|
|
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
- name: Set up Helm
|
2022-10-31 09:54:52 +00:00
|
|
|
uses: azure/setup-helm@v3.4
|
2021-04-30 22:23:51 +00:00
|
|
|
with:
|
|
|
|
version: v3.4.2
|
|
|
|
|
|
|
|
- name: Generate chart
|
|
|
|
run: |
|
|
|
|
make helm.generate
|
|
|
|
- name: Run chart-releaser
|
2023-01-09 19:07:21 +00:00
|
|
|
uses: helm/chart-releaser-action@v1.5.0
|
2021-05-05 19:20:07 +00:00
|
|
|
if: github.ref == 'refs/heads/main'
|
2021-04-30 22:23:51 +00:00
|
|
|
env:
|
|
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}"
|
|
|
|
with:
|
|
|
|
charts_dir: deploy/charts
|
|
|
|
charts_repo_url: https://charts.external-secrets.io
|