-
Notifications
You must be signed in to change notification settings - Fork 5
76 lines (63 loc) · 2 KB
/
chart-testing.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Chart Testing and Release
on:
push:
paths:
- 'chart/**'
- '.github/workflows/chart-testing.yaml'
jobs:
lint-test-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.12.0
- uses: actions/setup-python@v4
with:
python-version: '3.11'
check-latest: true
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (lint)
run: ct lint --chart-dirs chart --target-branch ${{ github.event.repository.default_branch }}
- name: Create kind cluster
uses: helm/[email protected]
- name: Run chart-testing (install)
run: |
ct install --chart-dirs chart \
--helm-extra-args '--timeout 60s' \
--target-branch ${{ github.event.repository.default_branch }}
release-chart:
if: github.ref == 'refs/heads/main'
needs: lint-test-chart
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: 'v3.12.3'
- name: Generate Chart Readme
run: |
docker run --rm -v "$(pwd)/chart:/helm-docs" jnorwood/helm-docs@sha256:e438eb9f879e4bb8389ce4acd0f7e9193e3d62e877a1a3cd5abd0393dbe55fe5
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: ./chart
env:
CR_SKIP_EXISTING: "true"
CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-chart-{{ .Version }}"
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"