fix: replace apps during 1.31

This commit is contained in:
Stefan Reimer 2025-03-11 14:07:40 +01:00
parent bfafccaf32
commit cbcaec807a
2 changed files with 5 additions and 1 deletions

View File

@ -328,7 +328,10 @@ apply_module() {
done done
for t in $MODULES; do for t in $MODULES; do
_helm apply $t #_helm apply $t
# During 1.31 we change the ArgoCD tracking so replace
_helm replace $t
done done
echo "Applied KubeZero modules: $MODULES" echo "Applied KubeZero modules: $MODULES"

View File

@ -2,6 +2,7 @@
# Simulate well-known CRDs being available # Simulate well-known CRDs being available
API_VERSIONS="-a monitoring.coreos.com/v1 -a snapshot.storage.k8s.io/v1 -a policy/v1/PodDisruptionBudget -a apiregistration.k8s.io/v1" API_VERSIONS="-a monitoring.coreos.com/v1 -a snapshot.storage.k8s.io/v1 -a policy/v1/PodDisruptionBudget -a apiregistration.k8s.io/v1"
LOCAL_DEV=${LOCAL_DEV:-""}
export HELM_SECRETS_BACKEND="vals" export HELM_SECRETS_BACKEND="vals"