Skip to content

Workflow file for this run

on: push
name: Check values files
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: debug
run: >
echo 'date' > ~/.local/bin/debug_test &&
chmod o+x ~/.local/bin/debug_test &&
debug_test &&
~/.local/bin/debug_test
- name: Create helmfile docker shim
run: >
echo 'docker run --rm -v "${PWD}:/wd" ghcr.io/helmfile/helmfile:latest helmfile $*'
> ~/.local/bin/helmfile
chmod o+x ~/.local/bin/helmfile
- name: Create yq docker shim
run: >
echo 'docker run --rm -v "${PWD}:/wd" --entrypoint yq ghcr.io/linuxserver/yq:latest $*'
> ~/.local/bin/yq
chmod o+x ~/.local/bin/helmfile
- 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_file=/tmp/$env.$release.yml
echo checking $k - [$env] [$release]
./bin/generate-values "$env" "$release" $tmp_values_file
diff tmp_values_file $release_file
done
done