mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
26 lines
1.2 KiB
Bash
Executable File
26 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
# Migration 1 --> 2
|
|
|
|
# Fix mariadb-operator secrets
|
|
if kubectl get -n cozy-mariadb-operator secret/mariadb-operator-webhook-cert; then
|
|
kubectl annotate -n cozy-mariadb-operator secret/mariadb-operator-webhook-cert meta.helm.sh/release-namespace=cozy-mariadb-operator meta.helm.sh/release-name=mariadb-operator
|
|
kubectl label -n cozy-mariadb-operator secret/mariadb-operator-webhook-cert app.kubernetes.io/managed-by=Helm
|
|
fi
|
|
|
|
# Gratefully remove fluxcd release and keep resources
|
|
if kubectl get hr -n cozy-fluxcd cozy-fluxcd 2>/dev/null; then
|
|
kubectl patch hr -n cozy-fluxcd cozy-fluxcd -p '{"spec": {"suspend": true}, "metadata": {"finalizers": null}}' --type=merge
|
|
kubectl delete hr -n cozy-fluxcd cozy-fluxcd
|
|
fi
|
|
kubectl delete secret -n cozy-fluxcd -l name=fluxcd
|
|
|
|
# Fix kubeovn crds
|
|
kubeovn_crds=$(kubectl get crd -o name | grep '\.kubeovn\.io$')
|
|
if [ -n "$kubeovn_crds" ]; then
|
|
kubectl annotate $kubeovn_crds meta.helm.sh/release-namespace=cozy-kubeovn meta.helm.sh/release-name=kubeovn
|
|
kubectl label $kubeovn_crds app.kubernetes.io/managed-by=Helm
|
|
fi
|
|
|
|
# Write version to cozystack-version config
|
|
kubectl create configmap -n cozy-system cozystack-version --from-literal=version=2 --dry-run=client -o yaml | kubectl apply -f-
|