UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit fc9d9651 authored by Micah Nagel's avatar Micah Nagel Committed by joshwolf
Browse files

Resolve "flux fails to find tags in airgap"

parent 58a5cc1e
No related branches found
No related tags found
1 merge request!378Resolve "flux fails to find tags in airgap"
......@@ -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