docs: expand deploy/upgrade/downgrade docs
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-10-14 12:26:07 +02:00
parent ae32b1eed2
commit 5dd97cace0
3 changed files with 24 additions and 5 deletions

View File

@ -25,10 +25,18 @@ var appUpgradeCommand = &cli.Command{
},
Description: `
This command supports upgrading an app. You can use it to choose and roll out a
new upgrade to an existing app. This command specifically supports changing the
version of running apps, as opposed to "abra app deploy <app>". This action
could be destructive, please ensure you have a copy of your app data beforehand
- see "abra app backup <app>" for more.
new upgrade to an existing app.
This command specifically supports changing the version of running apps, as
opposed to "abra app deploy <app>" which will not change the version of a
deployed app.
You may pass "--force/-f" to upgrade to the same version again. This can be
useful if the container runtime has gotten into a weird state or your doing
some live hacking.
This action could be destructive, please ensure you have a copy of your app
data beforehand - see "abra app backup <app>" for more.
`,
Action: func(c *cli.Context) error {
app := internal.ValidateApp(c)