mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
fbe0f311f2
* feat: comprehensive sentry instrumentation * test: pass * fix: only fetch zitadel dsn in zitadel-operator * chore: use dns for sentry environment as soon as parsed * fix: trust ca certs * ci: update orbos * docs: add usage data explanation * fix: dont send validation errors * docs: improve ingestion data explanation * style: rename flag --disable-ingestion to --disable-analytics * fix: pass --disable-analytics flag to self deployments * fix: destroy command for sentry * fix: update orbos * fix: only switch environment if analytics is enabled * fix: ensure SENTRY_DSN is always set * test: test empty sentry dsn * ci: invalidate build caches * chore: use zitadel-dev if no version is passed * chore: combine dev releases in sentry * refactor: only check for semrel if sentry is enabled
61 lines
1.1 KiB
Go
61 lines
1.1 KiB
Go
package cmds
|
|
|
|
import (
|
|
"github.com/caos/orbos/pkg/kubernetes/cli"
|
|
"github.com/caos/zitadel/pkg/databases"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func BackupCommand(getRv GetRootValues) *cobra.Command {
|
|
var (
|
|
backup string
|
|
cmd = &cobra.Command{
|
|
Use: "backup",
|
|
Short: "Instant backup",
|
|
Long: "Instant backup",
|
|
}
|
|
)
|
|
|
|
flags := cmd.Flags()
|
|
flags.StringVar(&backup, "backup", "", "Name used for backup folder")
|
|
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) (err error) {
|
|
rv := getRv("backup", map[string]interface{}{"backup": backup}, "")
|
|
defer func() {
|
|
err = rv.ErrFunc(err)
|
|
}()
|
|
|
|
monitor := rv.Monitor
|
|
orbConfig := rv.OrbConfig
|
|
gitClient := rv.GitClient
|
|
|
|
k8sClient, err := cli.Client(monitor, orbConfig, gitClient, rv.Kubeconfig, rv.Gitops, true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if rv.Gitops {
|
|
if err := databases.GitOpsInstantBackup(
|
|
monitor,
|
|
k8sClient,
|
|
gitClient,
|
|
backup,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
|
|
} else {
|
|
if err := databases.CrdInstantBackup(
|
|
monitor,
|
|
k8sClient,
|
|
backup,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
return cmd
|
|
}
|