feat(helm): infisical helm

This commit is contained in:
Daniel Hougaard
2025-05-01 06:45:40 +04:00
parent e7a55d8a27
commit 82c7dad6c8
12 changed files with 348 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
cd infisical-gateway
helm dependency update
helm package .
for i in *.tgz; do
[ -f "$i" ] || break
cloudsmith push helm --republish infisical/helm-charts "$i"
done
cd ..