feat: deploy --no-converge-checks & finish app errors

This commit is contained in:
2021-12-24 02:23:46 +01:00
parent 20f7a18caa
commit ab8db8df64
8 changed files with 97 additions and 61 deletions

View File

@ -25,6 +25,7 @@ var appRollbackCommand = &cli.Command{
Flags: []cli.Flag{
internal.ForceFlag,
internal.ChaosFlag,
internal.DontWaitConvergeFlag,
},
Description: `
This command rolls an app back to a previous version if one exists.
@ -164,7 +165,7 @@ recipes.
}
}
if err := stack.RunDeploy(cl, deployOpts, compose, app.Type); err != nil {
if err := stack.RunDeploy(cl, deployOpts, compose, app.Type, internal.DontWaitConverge); err != nil {
logrus.Fatal(err)
}