fix(cli): overwrite setups (#3488)

* fix(cli): possibility to overwrite setup steps

* chore: update cockroach version in go-dep

* fix(cli): init masterkey flags once

Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
Silvan
2022-04-25 17:05:20 +02:00
committed by GitHub
parent 7a507fe63c
commit 388ef6b93b
7 changed files with 38 additions and 7 deletions

View File

@@ -14,7 +14,6 @@ func startFlags(cmd *cobra.Command) {
bindBoolFlag(cmd, "externalSecure", "if ZITADEL will be served on HTTPS")
key.AddMasterKeyFlag(cmd)
}
func bindStringFlag(cmd *cobra.Command, name, description string) {

View File

@@ -38,6 +38,7 @@ Requirements:
}
startFlags(cmd)
setup.Flags(cmd)
return cmd
}