fix logging
Some checks failed
renovate / renovate (push) Has been cancelled

This commit is contained in:
2025-12-03 22:10:12 -06:00
parent dd5d7eeeb3
commit ca1818f663

View File

@@ -155,33 +155,39 @@ jobs:
case "$chart_name" in
"stack")
echo ""
echo ">> Special Rendering for stack ..."
helm template stack ./ --namespace argocd --include-crds | yq -s '$OUTPUT_FOLDER + .kind + "-" + .metadata.name'
;;
"cilium")
echo ""
echo ">> Special Rendering for cilium ..."
helm template cilium ./ --namespace kube-system --include-crds | yq -s '$OUTPUT_FOLDER + .kind + "-" + .metadata.name'
;;
"coredns")
echo ""
echo ">> Special Rendering for coredns ..."
helm template coredns ./ --namespace kube-system --include-crds | yq -s '$OUTPUT_FOLDER + .kind + "-" + .metadata.name'
;;
"metrics-server")
echo ""
echo ">> Special Rendering for metrics-server ..."
helm template metrics-server ./ --namespace kube-system --include-crds | yq -s '$OUTPUT_FOLDER + .kind + "-" + .metadata.name'
;;
"prometheus-operator-crds")
echo ""
echo ">> Special Rendering for prometheus-operator-crds ..."
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds | yq -s '$OUTPUT_FOLDER + .kind + "-" + .metadata.name'
;;
*)
echo ""
echo ">> Standard Rendering for $chart_name ..."
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds | yq -s '$OUTPUT_FOLDER + .kind + "-" + .metadata.name'
;;
esac
echo ""
echo ">> Manifests for $chart_name rendered to $OUTPUT_FILE"
echo ">> Manifests for $chart_name rendered to $OUTPUT_FOLDER"
echo ""
else
echo ""