Compare commits
2 Commits
902d271763
...
1b70a9bac6
| Author | SHA1 | Date | |
|---|---|---|---|
|
1b70a9bac6
|
|||
| 86b96d05d7 |
@@ -173,32 +173,32 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack ..."
|
echo ">> Special Rendering for stack ..."
|
||||||
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"cilium")
|
"cilium")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for cilium ..."
|
echo ">> Special Rendering for cilium ..."
|
||||||
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"coredns")
|
"coredns")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for coredns ..."
|
echo ">> Special Rendering for coredns ..."
|
||||||
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"metrics-server")
|
"metrics-server")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for metrics-server ..."
|
echo ">> Special Rendering for metrics-server ..."
|
||||||
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"prometheus-operator-crds")
|
"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for prometheus-operator-crds ..."
|
echo ">> Special Rendering for prometheus-operator-crds ..."
|
||||||
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -214,6 +214,7 @@ jobs:
|
|||||||
done
|
done
|
||||||
|
|
||||||
echo "----"
|
echo "----"
|
||||||
|
|
||||||
- name: Check for Changes
|
- name: Check for Changes
|
||||||
id: check-changes
|
id: check-changes
|
||||||
if: steps.check-dir-changes.outputs.changes-detected == 'true'
|
if: steps.check-dir-changes.outputs.changes-detected == 'true'
|
||||||
|
|||||||
@@ -159,32 +159,32 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack ..."
|
echo ">> Special Rendering for stack ..."
|
||||||
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"cilium")
|
"cilium")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for cilium ..."
|
echo ">> Special Rendering for cilium ..."
|
||||||
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"coredns")
|
"coredns")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for coredns ..."
|
echo ">> Special Rendering for coredns ..."
|
||||||
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"metrics-server")
|
"metrics-server")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for metrics-server ..."
|
echo ">> Special Rendering for metrics-server ..."
|
||||||
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"prometheus-operator-crds")
|
"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for prometheus-operator-crds ..."
|
echo ">> Special Rendering for prometheus-operator-crds ..."
|
||||||
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
@@ -178,32 +178,32 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack ..."
|
echo ">> Special Rendering for stack ..."
|
||||||
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"cilium")
|
"cilium")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for cilium ..."
|
echo ">> Special Rendering for cilium ..."
|
||||||
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"coredns")
|
"coredns")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for coredns ..."
|
echo ">> Special Rendering for coredns ..."
|
||||||
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"metrics-server")
|
"metrics-server")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for metrics-server ..."
|
echo ">> Special Rendering for metrics-server ..."
|
||||||
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"prometheus-operator-crds")
|
"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for prometheus-operator-crds ..."
|
echo ">> Special Rendering for prometheus-operator-crds ..."
|
||||||
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
@@ -176,32 +176,32 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack ..."
|
echo ">> Special Rendering for stack ..."
|
||||||
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template stack ./ --namespace argocd --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"cilium")
|
"cilium")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for cilium ..."
|
echo ">> Special Rendering for cilium ..."
|
||||||
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template cilium ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"coredns")
|
"coredns")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for coredns ..."
|
echo ">> Special Rendering for coredns ..."
|
||||||
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template coredns ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"metrics-server")
|
"metrics-server")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for metrics-server ..."
|
echo ">> Special Rendering for metrics-server ..."
|
||||||
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template metrics-server ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
"prometheus-operator-crds")
|
"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for prometheus-operator-crds ..."
|
echo ">> Special Rendering for prometheus-operator-crds ..."
|
||||||
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template prometheus-operator-crds ./ --namespace kube-system --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name'
|
helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ shelly-plug:
|
|||||||
main:
|
main:
|
||||||
image:
|
image:
|
||||||
repository: php
|
repository: php
|
||||||
tag: 8.4.15-apache-bookworm
|
tag: 8.5.0-apache-bookworm
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: SHELLY_HOSTNAME
|
- name: SHELLY_HOSTNAME
|
||||||
|
|||||||
Reference in New Issue
Block a user