-
Notifications
You must be signed in to change notification settings - Fork 3
54 lines (45 loc) · 1.22 KB
/
helm-lint-test.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
name: Lint and server-side dry-run
on:
push:
branches:
- main
paths:
- 'templates/**'
- 'values.yaml'
- 'Chart.yaml'
pull_request:
branches:
- main
paths:
- 'templates/**'
- 'values.yaml'
- 'Chart.yaml'
permissions:
contents: read
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.14.4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
check-latest: true
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (lint)
run: |
ct lint --chart-dirs . --charts . --validate-maintainers=false
- name: Create kind cluster
uses: helm/[email protected]
- name: Run chart-testing (install)
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add seaweedfs https://seaweedfs.github.io/seaweedfs/helm
helm repo update
helm template ctfd . -f values.yaml | kubectl create --dry-run=server -f -