-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (33 loc) · 1.23 KB
/
check-generated-values.yml
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
on: push
name: Check values files
jobs:
diff:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Create ~/.local/bin directory
run: mkdir -p ~/.local/bin
- name: Create helmfile docker shim
run: |
echo 'docker run --rm -v "${PWD}:/workdir" --workdir /workdir \
ghcr.io/helmfile/helmfile:latest helmfile $*' \
| tee ~/.local/bin/helmfile
chmod +x ~/.local/bin/helmfile
- name: Create yq docker shim
run: |
echo 'docker run --rm -v "${PWD}:/workdir" --workdir /workdir mikefarah/yq $*' \
| tee ~/.local/bin/yq
chmod +x ~/.local/bin/yq
- name: Diff generated value files
run: >
for ENV_DIR in k8s/argocd/*; do
ENV=$(basename "${ENV_DIR}")
for RELEASE_FILE in "${ENV_DIR}"/*.values.yaml; do
RELEASE=$(basename "${RELEASE_FILE}" .values.yaml)
TMP_VALUES=./tmp_"${ENV}.${RELEASE}".yml
echo "checking $RELEASE_FILE - [$ENV] [$RELEASE]"
./bin/generate-values "${ENV}" "${RELEASE}" "${TMP_VALUES}"
diff "${TMP_VALUES}" "${RELEASE_FILE}"
done
done