-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguard-control-plane-status-boundary.yml
More file actions
66 lines (54 loc) · 1.87 KB
/
Copy pathguard-control-plane-status-boundary.yml
File metadata and controls
66 lines (54 loc) · 1.87 KB
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
name: Guard Control Plane Status Boundary
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'apps/client/**'
- '.github/workflows/**'
- 'charts/**'
pull_request:
paths:
- 'apps/client/**'
- '.github/workflows/**'
- 'charts/**'
permissions:
contents: read
jobs:
assert-vercel-only:
name: Assert control plane status stays out of k3s
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fail if any Helm chart is added for control plane status
run: |
set -euo pipefail
if find charts -maxdepth 2 -type f | grep -E 'client|homelab-cloud-client' >/dev/null; then
echo "Control plane status app must not have a Helm chart under charts/"
find charts -maxdepth 2 -type f | grep -E 'client|homelab-cloud-client' || true
exit 1
fi
- name: Fail if any non-Vercel workflow references apps/client
run: |
set -euo pipefail
matches=$(rg -n "apps/client" .github/workflows \
-g '!deploy-client-client-vercel.yml' \
-g '!guard-client-boundary.yml' || true)
if [ -n "$matches" ]; then
echo "apps/client is only allowed in the Vercel deploy workflow and this guard workflow"
echo "$matches"
exit 1
fi
- name: Fail if kubernetes manifests are introduced for control plane status
run: |
set -euo pipefail
matches=$(rg -n "client|homelab-cloud-client" charts deploy .github/workflows \
-g '!deploy-client-client-vercel.yml' \
-g '!guard-client-boundary.yml' || true)
if [ -n "$matches" ]; then
echo "Found control plane status references in kubernetes-oriented paths:"
echo "$matches"
exit 1
fi