-
Notifications
You must be signed in to change notification settings - Fork 8
74 lines (65 loc) · 2.01 KB
/
ci.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
name: Check Example
on: [push]
jobs:
ingress-nginx:
runs-on: ubuntu-latest
name: Do snapshot ingress-nginx and create PR if snapshot changed
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update Snapshot
uses: jlandowner/helm-chartsnap-action@v1
id: helm-chartsnap-action
with:
chart: ingress-nginx
repo: https://kubernetes.github.io/ingress-nginx
values: example/remote/ingress-nginx.values.yaml
additional_args: "--namespace ingress-nginx --skip-tests"
update_snapshot: true
cilium:
runs-on: ubuntu-latest
name: Do snapshot cilium and create PR if snapshot changed
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update Snapshot
uses: jlandowner/helm-chartsnap-action@v1
id: helm-chartsnap-action
with:
chart: cilium
repo: https://helm.cilium.io
values: example/remote/cilium.values.yaml
additional_args: "--namespace kube-system"
update_snapshot: true
local:
runs-on: ubuntu-latest
name: Do snapshot cilium and create PR if snapshot changed
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update Snapshot
uses: jlandowner/helm-chartsnap-action@v1
id: helm-chartsnap-action
with:
chart: example/app1
values: example/app1/test/
continue-on-error: true
- name: OK if snapshot is changed
if: steps.helm-chartsnap-action.outcome == 'failure'
shell: bash
run: |
echo "snapshot changed"
- name: Fail if snapshot is not changed
if: steps.helm-chartsnap-action.outcome == 'success'
shell: bash
run: |
echo "snapshot not changed"; exit 1