UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 70376f3c authored by joshwolf's avatar joshwolf Committed by joshwolf
Browse files

Merge branch '332-flux-fails-to-find-tags-in-airgap' into 'master'

Resolve "flux fails to find tags in airgap"

Fixes the airgap issue with flux failing to find tags.

Closes https://repo1.dso.mil/platform-one/big-bang/bigbang/-/issues/332

See merge request platform-one/big-bang/bigbang!378
parent 2654ba4f
No related branches found
No related tags found
2 merge requests!445Nexus,!381Release 1.4.x
Pipeline #208651 passed
......@@ -9,10 +9,10 @@ git -C repos/ clone -b ${CI_COMMIT_REF_NAME} ${CI_REPOSITORY_URL}
# Clone core
yq e ".*.git.repo | select(. != null) | path | .[-3] " "chart/values.yaml" | while IFS= read -r package; do
git -C repos/ clone -b $(yq e ".${package}.git.tag" "chart/values.yaml") $(yq e ".${package}.git.repo" "chart/values.yaml")
git -C repos/ clone --no-checkout $(yq e ".${package}.git.repo" "chart/values.yaml")
done
# Clone addons
yq e ".addons.*.git.repo | select(. != null) | path | .[-3]" "chart/values.yaml" | while IFS= read -r package; do
git -C repos/ clone -b $(yq e ".addons.${package}.git.tag" "chart/values.yaml") $(yq e ".addons.${package}.git.repo" "chart/values.yaml")
git -C repos/ clone --no-checkout $(yq e ".addons.${package}.git.repo" "chart/values.yaml")
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment