generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 1
87 lines (78 loc) · 2.57 KB
/
flux-diff.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
77
78
79
80
81
82
83
84
85
86
87
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Flux Diff"
on:
pull_request:
branches: ["main"]
paths: ["kubernetes/**"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
flux-diff:
name: Flux Diff
runs-on: ubuntu-latest
permissions:
pull-requests: write
strategy:
matrix:
resources: ["helmrelease", "kustomization"]
max-parallel: 4
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: pull
- name: Checkout default branch
uses: actions/checkout@v4
with:
ref: "${{ github.event.repository.default_branch }}"
path: default
- name: Mise en place
uses: jdx/mise-action@v2
with:
mise_toml: |
[tools]
python = "3.12"
"aqua:astral-sh/uv" = "latest"
"aqua:fluxcd/flux2" = "latest"
"aqua:helm/helm" = "latest"
"aqua:kubernetes-sigs/kustomize" = "latest"
"pipx:flux-local" = "latest"
- name: Diff resources
shell: bash
run: |
flux-local diff ${{ matrix.resources }} \
--unified 6 \
--path ${{ github.workspace }}/pull/kubernetes/flux \
--path-orig ${{ github.workspace }}/default/kubernetes/flux \
--strip-attrs "helm.sh/chart,checksum/config,app.kubernetes.io/version,chart" \
--limit-bytes 10000 \
--all-namespaces \
--sources "home-kubernetes" \
--output-file diff.patch
- name: Generate diff markdown
id: diff-md
run: |
echo '```diff' > diff.md
cat diff.patch >> diff.md
echo '```' >> diff.md
echo "size=$(stat -c%s diff.patch)" >> "$GITHUB_OUTPUT"
- name: Add comment
if: ${{ steps.diff-md.outputs.size > 0 }}
uses: mshick/add-pr-comment@v2
with:
message-id: "${{ github.event.pull_request.number }}/${{ matrix.resources }}"
message-failure: Diff was not successful
message-path: diff.md
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
flux-diff-success:
if: ${{ always() }}
needs: ["flux-diff"]
name: Flux Diff Successful
runs-on: ubuntu-latest
steps:
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
name: Check matrix status
run: exit 1