2024-01-27 22:32:42 +00:00
|
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
|
|
|
2021-07-14 19:10:41 +00:00
|
|
|
name: helm-release
|
2023-01-06 15:24:55 +00:00
|
|
|
|
2023-06-30 11:44:57 +00:00
|
|
|
permissions: {}
|
|
|
|
|
2021-07-14 19:10:41 +00:00
|
|
|
on:
|
|
|
|
push:
|
2021-08-20 22:06:58 +00:00
|
|
|
tags:
|
2022-04-27 03:52:45 +00:00
|
|
|
- 'kyverno-chart-v*'
|
|
|
|
- 'kyverno-policies-chart-v*'
|
2022-09-08 17:34:09 +00:00
|
|
|
- 'kyverno-chart-*'
|
|
|
|
- 'kyverno-policies-chart-*'
|
2021-07-14 19:10:41 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-07-21 00:06:56 +00:00
|
|
|
helm-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-09-26 07:36:19 +00:00
|
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
2023-09-27 08:24:27 +00:00
|
|
|
- name: Setup caches
|
|
|
|
uses: ./.github/actions/setup-caches
|
|
|
|
timeout-minutes: 5
|
|
|
|
continue-on-error: true
|
2023-01-05 15:52:52 +00:00
|
|
|
- name: Setup build env
|
|
|
|
uses: ./.github/actions/setup-build-env
|
2023-08-30 20:44:51 +00:00
|
|
|
timeout-minutes: 10
|
2024-09-02 21:55:51 +00:00
|
|
|
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
|
2021-07-21 00:06:56 +00:00
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
- name: Set up chart-testing
|
2023-11-06 14:33:04 +00:00
|
|
|
uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # v2.6.1
|
2021-07-21 00:06:56 +00:00
|
|
|
- name: Run chart-testing (lint)
|
2023-10-26 12:56:26 +00:00
|
|
|
run: ct lint --target-branch=main --check-version-increment=false --validate-maintainers=false
|
2021-07-21 00:06:56 +00:00
|
|
|
|
2023-04-03 07:56:52 +00:00
|
|
|
linter-artifacthub:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: artifacthub/ah
|
|
|
|
options: --user root
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-09-26 07:36:19 +00:00
|
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
2023-04-03 07:56:52 +00:00
|
|
|
- name: Run ah lint
|
|
|
|
working-directory: ./charts/
|
|
|
|
run: ah lint
|
|
|
|
|
2021-07-14 19:10:41 +00:00
|
|
|
create-release:
|
|
|
|
runs-on: ubuntu-latest
|
2021-07-21 00:06:56 +00:00
|
|
|
needs: helm-tests
|
2022-10-12 20:14:44 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
packages: write
|
|
|
|
id-token: write
|
|
|
|
pages: write
|
2021-07-14 19:10:41 +00:00
|
|
|
steps:
|
2021-07-19 20:01:17 +00:00
|
|
|
- name: Checkout
|
2024-09-26 07:36:19 +00:00
|
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
2023-09-27 08:24:27 +00:00
|
|
|
- name: Setup caches
|
|
|
|
uses: ./.github/actions/setup-caches
|
|
|
|
timeout-minutes: 5
|
|
|
|
continue-on-error: true
|
2023-01-05 15:52:52 +00:00
|
|
|
- name: Setup build env
|
|
|
|
uses: ./.github/actions/setup-build-env
|
2023-08-30 20:44:51 +00:00
|
|
|
timeout-minutes: 10
|
2022-09-02 08:55:41 +00:00
|
|
|
|
2021-07-14 19:10:41 +00:00
|
|
|
- name: Install Helm
|
2024-04-16 09:54:59 +00:00
|
|
|
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0
|
2021-07-14 19:10:41 +00:00
|
|
|
with:
|
2022-12-27 12:58:18 +00:00
|
|
|
version: v3.10.3
|
2021-07-14 19:10:41 +00:00
|
|
|
|
2022-10-12 20:14:44 +00:00
|
|
|
- name: Install Cosign
|
2024-08-09 09:12:12 +00:00
|
|
|
uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0
|
2022-10-12 20:14:44 +00:00
|
|
|
|
2022-04-27 03:52:45 +00:00
|
|
|
- name: Set version
|
|
|
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Create charts tmp directory
|
|
|
|
run: |
|
|
|
|
mkdir charts-tmp
|
|
|
|
if [[ "$RELEASE_VERSION" = "kyverno-policies-chart-v"* ]]; then
|
|
|
|
cp -a charts/kyverno-policies charts-tmp/kyverno-policies
|
|
|
|
fi
|
|
|
|
if [[ "$RELEASE_VERSION" = "kyverno-chart-v"* ]]; then
|
|
|
|
cp -a charts/kyverno charts-tmp/kyverno
|
|
|
|
fi
|
2022-09-12 07:36:46 +00:00
|
|
|
if [[ "$RELEASE_VERSION" = "kyverno-policies-chart-"* ]]; then
|
|
|
|
cp -a charts/kyverno-policies charts-tmp/kyverno-policies
|
|
|
|
fi
|
|
|
|
if [[ "$RELEASE_VERSION" = "kyverno-chart-"* ]]; then
|
|
|
|
cp -a charts/kyverno charts-tmp/kyverno
|
|
|
|
fi
|
2022-04-27 03:52:45 +00:00
|
|
|
|
2021-07-14 19:10:41 +00:00
|
|
|
- name: Run chart-releaser
|
2022-12-02 12:52:56 +00:00
|
|
|
uses: stefanprodan/helm-gh-pages@0ad2bb377311d61ac04ad9eb6f252fb68e207260 #v1.7.0
|
2021-07-14 19:10:41 +00:00
|
|
|
with:
|
2021-07-20 19:49:37 +00:00
|
|
|
token: "${{ secrets.GITHUB_TOKEN }}"
|
2022-02-21 15:50:42 +00:00
|
|
|
linting: off
|
2022-04-27 03:52:45 +00:00
|
|
|
charts_dir: charts-tmp
|
2022-09-01 19:15:33 +00:00
|
|
|
|
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
run: |
|
|
|
|
helm registry login --username ${GITHUB_ACTOR} --password ${{ secrets.GITHUB_TOKEN }} ghcr.io
|
|
|
|
|
|
|
|
- name: Publish OCI Charts
|
|
|
|
run: |
|
|
|
|
for dir in `find charts-tmp -maxdepth 1 -mindepth 1 -type d -print`; do
|
|
|
|
chart=${dir##*/}
|
|
|
|
echo "Found chart: ${chart}"
|
2022-10-02 20:20:33 +00:00
|
|
|
helm package charts-tmp/${chart} --destination .dist
|
2022-12-27 12:58:18 +00:00
|
|
|
helm push .dist/${chart}-*.tgz oci://ghcr.io/${{ github.repository_owner }}/charts |& tee .digest
|
2023-06-30 13:40:08 +00:00
|
|
|
cosign login --username ${GITHUB_ACTOR} --password ${{ secrets.GITHUB_TOKEN }} ghcr.io
|
2023-07-06 12:19:21 +00:00
|
|
|
cosign sign --yes ghcr.io/${{ github.repository_owner }}/charts/${chart}@$(cat .digest | awk -F "[, ]+" '/Digest/{print $NF}')
|
2022-10-02 20:20:33 +00:00
|
|
|
done
|