feat: rename plugin to helm-kustomize and remove rewrite

This commit is contained in:
2025-05-11 15:26:25 +02:00
parent 73ccf570d9
commit a022dbc9c9
8 changed files with 3 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
export HOME=/helm-working-dir
helm repo update oceanbox
if [ -n "$PARAM_CHART" -a "$PARAM_CHART" != "." ]; then
helm show values $PARAM_CHART > values-chart.yaml
elif [ -f chart ]; then
CHART=$(cat chart)
helm show values $CHART > values-chart.yaml
fi