-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gh-action: use actions for check-generated-values.yml (#1737)
- Loading branch information
Showing
1 changed file
with
5 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,44 +3,13 @@ name: Check values files | |
jobs: | ||
diff: | ||
runs-on: ubuntu-latest | ||
env: | ||
TMP_DIR: "/tmp/shared" | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Create directories | ||
run: | | ||
mkdir -p ~/.local/bin | ||
mkdir -p "${TMP_DIR}" | ||
chmod 777 "${TMP_DIR}" | ||
- name: Create helmfile docker shim | ||
run: | | ||
docker pull ghcr.io/helmfile/helmfile:latest | ||
echo 'docker run \ | ||
--rm \ | ||
--volume "${TMP_DIR}:${TMP_DIR}" \ | ||
--volume "${PWD}:/workdir" \ | ||
--workdir /workdir \ | ||
--user $(id -u):$(id -g) \ | ||
ghcr.io/helmfile/helmfile:latest helmfile $*' \ | ||
| tee ~/.local/bin/helmfile | ||
chmod +x ~/.local/bin/helmfile | ||
- name: Create yq docker shim | ||
run: | | ||
docker pull mikefarah/yq:latest | ||
echo 'docker run \ | ||
--rm \ | ||
--volume "${TMP_DIR}:${TMP_DIR}" \ | ||
--volume "${PWD}:/workdir" \ | ||
--workdir /workdir \ | ||
--user $(id -u):$(id -g) \ | ||
mikefarah/yq:latest $*' \ | ||
| tee ~/.local/bin/yq | ||
chmod +x ~/.local/bin/yq | ||
- name: Set up yq | ||
uses: frenck/action-setup-yq@v1 | ||
- name: Set up helmfile | ||
uses: helmfile/[email protected] | ||
- name: Diff current values files against generated ones | ||
run: > | ||
set -x; | ||
|
@@ -49,7 +18,7 @@ jobs: | |
for RELEASE_FILE in "${ENV_DIR}"/*.values.yaml; do | ||
RELEASE=$(basename "${RELEASE_FILE}" .values.yaml) | ||
TMP_VALUES="${TMP_DIR}"/tmp_"${ENV}.${RELEASE}".yml | ||
TMP_VALUES=$(mktemp) | ||
echo "checking $RELEASE_FILE - [$ENV] [$RELEASE]" | ||
|