From ee72e280897b9a38f0b1cdfe528979c6e321c152 Mon Sep 17 00:00:00 2001 From: Dean Roehrich Date: Thu, 12 Sep 2024 10:53:14 -0500 Subject: [PATCH] Let collect-manifests record the release version Add the release version to the manifest tarball. Signed-off-by: Dean Roehrich --- tools/collect-manifests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/collect-manifests.sh b/tools/collect-manifests.sh index 08d51a11..f7398a23 100755 --- a/tools/collect-manifests.sh +++ b/tools/collect-manifests.sh @@ -181,6 +181,8 @@ walk_overlays() { walk_overlays +echo "$NNF_VERSION" > "$TREEDIR/manifest-release.txt" + mkdir "$TREEDIR/cert-mgr" # Wishing for yq(1)... CERT_URL=$(python3 -c 'import yaml, sys; doc = yaml.safe_load(sys.stdin); x = [tp["url"] for tp in doc["thirdPartyServices"] if tp["name"] == "cert-manager"]; print(x[0])' < config/repositories.yaml)