chore: Add rflood Helm chart with deployment, service, ingress, PVC, and values files

This commit is contained in:
sha
2026-04-13 22:39:08 +03:00
parent 2a4fac3136
commit 755c5a1112
7 changed files with 180 additions and 1 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ fetch_latest() {
local token
token=$(curl -s "https://ghcr.io/token?scope=repository:${repo}:pull" | jq -r '.token // empty')
if [ -n "$token" ]; then
version=$(curl -s -H "Authorization: Bearer $token" "https://ghcr.io/v2/${repo}/tags/list" | jq -r '.tags[]' | grep -E "$pattern" | sort -V -r | head -1)
version=$(curl -s -H "Authorization: Bearer $token" "https://ghcr.io/v2/${repo}/tags/list?n=10000" | jq -r '.tags[]' | grep -E "$pattern" | sort -V -r | head -1)
fi
;;
*)