mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
425a8b5fd5
* fix(zitadelctl): implement takedown command * fix(zitadelctl): correct destroy flow * fix(zitadelctl): correct backup commands to read crds beforehand * fix: add of destroyfile * fix: clean for userlist * fix: change backup and restore to crdb native * fix: timeout for delete pvc for cockroachdb * fix: corrected unit tests * fix: add ignored file for scale * fix: correct handling of gitops in backup command * feat: add s3 backup kind * fix: backuplist for s3 and timeout for pv deletion * fix(database): fix nil pointer with binary version * fix(database): cleanup of errors which cam with merging of the s3 logic * fix: correct unit tests * fix: cleanup monitor output Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix: backup imagepullpolixy to ifnotpresent Co-authored-by: Elio Bischof <eliobischof@gmail.com>
62 lines
1.2 KiB
Go
62 lines
1.2 KiB
Go
package databases
|
|
|
|
import (
|
|
"github.com/caos/orbos/mntr"
|
|
"github.com/caos/orbos/pkg/git"
|
|
"github.com/caos/orbos/pkg/kubernetes"
|
|
"github.com/caos/orbos/pkg/tree"
|
|
"github.com/caos/zitadel/operator/api/database"
|
|
"github.com/caos/zitadel/operator/database/kinds/databases/managed"
|
|
orbdb "github.com/caos/zitadel/operator/database/kinds/orb"
|
|
)
|
|
|
|
func GitOpsClear(
|
|
monitor mntr.Monitor,
|
|
k8sClient kubernetes.ClientInt,
|
|
gitClient *git.Client,
|
|
) error {
|
|
desired, err := gitClient.ReadTree(git.DatabaseFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return clear(monitor, k8sClient, desired, true)
|
|
}
|
|
|
|
func CrdClear(
|
|
monitor mntr.Monitor,
|
|
k8sClient kubernetes.ClientInt,
|
|
) error {
|
|
desired, err := database.ReadCrd(k8sClient)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return clear(monitor, k8sClient, desired, false)
|
|
}
|
|
|
|
func clear(
|
|
monitor mntr.Monitor,
|
|
k8sClient kubernetes.ClientInt,
|
|
desired *tree.Tree,
|
|
gitops bool,
|
|
) error {
|
|
current := &tree.Tree{}
|
|
|
|
query, _, _, _, _, _, err := orbdb.AdaptFunc("", nil, gitops, managed.Clean)(monitor, desired, current)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
queried := map[string]interface{}{}
|
|
ensure, err := query(k8sClient, queried)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := ensure(k8sClient); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|