mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +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>
61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
package cmds
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/caos/orbos/pkg/kubernetes/cli"
|
|
"sort"
|
|
|
|
"github.com/caos/zitadel/pkg/databases"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func BackupListCommand(getRv GetRootValues) *cobra.Command {
|
|
var (
|
|
cmd = &cobra.Command{
|
|
Use: "backuplist",
|
|
Short: "Get a list of all backups",
|
|
Long: "Get a list of all backups",
|
|
}
|
|
)
|
|
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) (err error) {
|
|
rv := getRv("backuplist", nil, "")
|
|
defer func() {
|
|
err = rv.ErrFunc(err)
|
|
}()
|
|
|
|
monitor := rv.Monitor
|
|
orbConfig := rv.OrbConfig
|
|
gitClient := rv.GitClient
|
|
|
|
backups := make([]string, 0)
|
|
k8sClient, err := cli.Client(monitor, orbConfig, rv.GitClient, rv.Kubeconfig, rv.Gitops, true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if rv.Gitops {
|
|
backupsT, err := databases.GitOpsListBackups(monitor, gitClient, k8sClient)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
backups = backupsT
|
|
} else {
|
|
backupsT, err := databases.CrdListBackups(monitor, k8sClient)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
backups = backupsT
|
|
}
|
|
|
|
sort.Slice(backups, func(i, j int) bool {
|
|
return backups[i] > backups[j]
|
|
})
|
|
for _, backup := range backups {
|
|
fmt.Println(backup)
|
|
}
|
|
return nil
|
|
}
|
|
return cmd
|
|
}
|