2 Commits

Author SHA1 Message Date
e16d98288b Update php Docker tag to v8.5.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
lint-test-helm / helm-lint (pull_request) Successful in 12s
2025-11-30 04:24:29 +00:00
25710206d5 fix env
All checks were successful
renovate / renovate (push) Successful in 1m18s
2025-11-29 22:23:16 -06:00

View File

@@ -33,16 +33,16 @@ jobs:
CLUSTERS: cl01tl CLUSTERS: cl01tl
run: | run: |
for cluster in $CLUSTERS; do for cluster in $CLUSTERS; do
mkdir clusters/$CLUSTER/manifests mkdir clusters/$cluster/manifests
for chart_path in clusters/$CLUSTER/helm/*; do for chart_path in clusters/$cluster/helm/*; do
chart_name=$(basename "$chart_path") chart_name=$(basename "$chart_path")
echo "" echo ""
echo "Rendering chart: $chart_name" echo "Rendering chart: $chart_name"
if [ -f "$chart_path/Chart.yaml" ]; then if [ -f "$chart_path/Chart.yaml" ]; then
OUTPUT_FILE="clusters/$CLUSTER/manifests/$chart_name.yaml" OUTPUT_FILE="clusters/$cluster/manifests/$chart_name.yaml"
helm template "$chart_name" "$chart" --namespace "$chart_name" > "$OUTPUT_FILE" helm template "$chart_name" "$chart" --namespace "$chart_name" > "$OUTPUT_FILE"