mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-03 23:04:53 -04:00
cli: fix broken "constellation mini up" due to incompatible terraform json (#2081)
* deps: downgrade terraform-json to v0.15.0 terraform-exec requires a matching version of terraform json. Since the latest released version of terraform-exec still uses terraform-json v0.15.0, we need to stay on that version. * cli: add "--skip-helm-wait" flag for "constellation init" to "constellation mini up"
This commit is contained in:
parent
ef526562df
commit
738b22caba
6 changed files with 67 additions and 8 deletions
|
@ -196,6 +196,7 @@ func (m *miniUpCmd) initializeMiniCluster(cmd *cobra.Command, fileHandler file.H
|
|||
cmd.Flags().String("master-secret", "", "")
|
||||
cmd.Flags().String("endpoint", "", "")
|
||||
cmd.Flags().Bool("conformance", false, "")
|
||||
cmd.Flags().Bool("skip-helm-wait", false, "install helm charts without waiting for deployments to be ready")
|
||||
log, err := newCLILogger(cmd)
|
||||
if err != nil {
|
||||
return fmt.Errorf("creating logger: %w", err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue