-
Notifications
You must be signed in to change notification settings - Fork 7
128 lines (114 loc) · 3.82 KB
/
image-pull.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Image Pull
on:
pull_request:
branches: ["main"]
paths:
- "kubernetes/main/**"
- "kubernetes/repositories/**"
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
setup:
name: Image Pull - Setup
runs-on: ubuntu-latest
outputs:
any_changed: ${{ steps.changed-files.outputs.any_changed }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Get Changed Files
id: changed-files
uses: tj-actions/changed-files@dcc7a0cba800f454d79fff4b993e8c3555bcc0a8 # v45
with:
files: kubernetes/main/**
extract:
if: ${{ needs.setup.outputs.any_changed == 'true' }}
name: Image Pull - Extract Images
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
branches: ["default", "pull"]
fail-fast: false
outputs:
default: ${{ steps.images.outputs.default }}
pull: ${{ steps.images.outputs.pull }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: "${{ matrix.branches == 'default' && github.event.repository.default_branch || '' }}"
- name: Gather Images
uses: docker://ghcr.io/allenporter/flux-local:v7.2.0@sha256:892796649505f52f9ad0c4247416b3b161e0f4f49e55a1a73626c98d3def978c
with:
args: >-
get cluster
--all-namespaces
--path /github/workspace/kubernetes/main/cluster/config
--enable-images
--only-images
--output json
--output-file images.json
- name: Output Images
id: images
run: |
echo "${{ matrix.branches }}=$(jq --compact-output '.' images.json)" >> "${GITHUB_OUTPUT}"
{
echo '## Branch ${{ matrix.branches }} images'
echo '```json'
jq '.' images.json
echo '```'
} >> "${GITHUB_STEP_SUMMARY}"
compare:
if: ${{ needs.setup.outputs.any_changed == 'true' && needs.extract.outputs.default != needs.extract.outputs.pull }}
name: Image Pull - Compare Images
runs-on: ubuntu-latest
needs: ["setup", "extract"]
outputs:
images: ${{ steps.compare.outputs.images }}
steps:
- name: Compare Images
id: compare
run: |
images=$(jq --compact-output --null-input \
--argjson f1 '${{ needs.extract.outputs.default }}' \
--argjson f2 '${{ needs.extract.outputs.pull }}' \
'$f2 - $f1' \
)
echo "images=${images}" >> "${GITHUB_OUTPUT}"
{
echo '## New images to Pull'
echo '```json'
echo "${images}" | jq
echo '```'
} >> "${GITHUB_STEP_SUMMARY}"
pull:
if: ${{ needs.setup.outputs.any_changed == 'true' && needs.compare.outputs.images != '[]' }}
name: Image Pull - Pull Images
runs-on: k8s-homelab-runner
needs: ["setup", "compare"]
strategy:
matrix:
images: ${{ fromJSON(needs.compare.outputs.images) }}
max-parallel: 4
fail-fast: false
steps:
- name: Install talosctl
run: curl -fsSL https://talos.dev/install | sh
- name: Pull Image
run: talosctl -n "${NODE_IP}" image pull ${{ matrix.images }}
status:
if: ${{ always() }}
name: Image Pull - Success
needs: pull
runs-on: ubuntu-latest
steps:
- name: Any jobs failed?
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
- name: All jobs passed or skipped?
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"