282 lines
8.0 KiB
Go
282 lines
8.0 KiB
Go
package app
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"coopcloud.tech/abra/cli/internal"
|
|
"coopcloud.tech/abra/pkg/autocomplete"
|
|
"coopcloud.tech/abra/pkg/client"
|
|
"coopcloud.tech/abra/pkg/config"
|
|
"coopcloud.tech/abra/pkg/lint"
|
|
"coopcloud.tech/abra/pkg/recipe"
|
|
recipePkg "coopcloud.tech/abra/pkg/recipe"
|
|
stack "coopcloud.tech/abra/pkg/upstream/stack"
|
|
"coopcloud.tech/tagcmp"
|
|
"github.com/AlecAivazis/survey/v2"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var appUpgradeCommand = cli.Command{
|
|
Name: "upgrade",
|
|
Aliases: []string{"up"},
|
|
Usage: "Upgrade an app",
|
|
ArgsUsage: "<domain> [<version>]",
|
|
Flags: []cli.Flag{
|
|
internal.DebugFlag,
|
|
internal.NoInputFlag,
|
|
internal.ForceFlag,
|
|
internal.ChaosFlag,
|
|
internal.NoDomainChecksFlag,
|
|
internal.DontWaitConvergeFlag,
|
|
internal.OfflineFlag,
|
|
},
|
|
Before: internal.SubCommandBefore,
|
|
Description: `
|
|
Upgrade an app. You can use it to choose and roll out a new upgrade to an
|
|
existing app.
|
|
|
|
This command specifically supports incrementing the version of running apps, as
|
|
opposed to "abra app deploy <domain>" 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.
|
|
|
|
This action could be destructive, please ensure you have a copy of your app
|
|
data beforehand.
|
|
|
|
Chaos mode ("--chaos") will deploy your local checkout of a recipe as-is,
|
|
including unstaged changes and can be useful for live hacking and testing new
|
|
recipes.
|
|
`,
|
|
BashComplete: autocomplete.AppNameComplete,
|
|
Action: func(c *cli.Context) error {
|
|
app := internal.ValidateApp(c)
|
|
stackName := app.StackName()
|
|
|
|
if !internal.Chaos {
|
|
if err := recipe.EnsureIsClean(app.Recipe); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
if !internal.Offline {
|
|
if err := recipe.EnsureUpToDate(app.Recipe); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|
|
|
|
if err := recipe.EnsureLatest(app.Recipe); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|
|
|
|
recipe, err := recipePkg.Get(app.Recipe, internal.Offline)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
if err := lint.LintForErrors(recipe); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
logrus.Debugf("checking whether %s is already deployed", stackName)
|
|
|
|
cl, err := client.New(app.Server)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
isDeployed, deployedVersion, err := stack.IsDeployed(context.Background(), cl, stackName)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
if !isDeployed {
|
|
logrus.Fatalf("%s is not deployed?", app.Name)
|
|
}
|
|
|
|
catl, err := recipePkg.ReadRecipeCatalogue(internal.Offline)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
versions, err := recipePkg.GetRecipeCatalogueVersions(app.Recipe, catl)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
if len(versions) == 0 && !internal.Chaos {
|
|
logrus.Warn("no published versions in catalogue, trying local recipe repository")
|
|
recipeVersions, err := recipePkg.GetRecipeVersions(app.Recipe, internal.Offline)
|
|
if err != nil {
|
|
logrus.Warn(err)
|
|
}
|
|
for _, recipeVersion := range recipeVersions {
|
|
for version := range recipeVersion {
|
|
versions = append(versions, version)
|
|
}
|
|
}
|
|
}
|
|
|
|
var availableUpgrades []string
|
|
if deployedVersion == "unknown" {
|
|
availableUpgrades = versions
|
|
logrus.Warnf("failed to determine deployed version of %s", app.Name)
|
|
}
|
|
|
|
specificVersion := c.Args().Get(1)
|
|
if specificVersion != "" {
|
|
parsedDeployedVersion, err := tagcmp.Parse(deployedVersion)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
parsedSpecificVersion, err := tagcmp.Parse(specificVersion)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
if parsedSpecificVersion.IsLessThan(parsedDeployedVersion) || parsedSpecificVersion.Equals(parsedDeployedVersion) {
|
|
logrus.Fatalf("%s is not an upgrade for %s?", deployedVersion, specificVersion)
|
|
}
|
|
availableUpgrades = append(availableUpgrades, specificVersion)
|
|
}
|
|
|
|
parsedDeployedVersion, err := tagcmp.Parse(deployedVersion)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
if deployedVersion != "unknown" && !internal.Chaos && specificVersion == "" {
|
|
for _, version := range versions {
|
|
parsedVersion, err := tagcmp.Parse(version)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
if parsedVersion.IsGreaterThan(parsedDeployedVersion) && !(parsedVersion.Equals(parsedDeployedVersion)) {
|
|
availableUpgrades = append(availableUpgrades, version)
|
|
}
|
|
}
|
|
|
|
if len(availableUpgrades) == 0 && !internal.Force {
|
|
logrus.Infof("no available upgrades, you're on latest (%s) ✌️", deployedVersion)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
var chosenUpgrade string
|
|
if len(availableUpgrades) > 0 && !internal.Chaos {
|
|
if internal.Force || internal.NoInput || specificVersion != "" {
|
|
chosenUpgrade = availableUpgrades[len(availableUpgrades)-1]
|
|
logrus.Debugf("choosing %s as version to upgrade to", chosenUpgrade)
|
|
} else {
|
|
prompt := &survey.Select{
|
|
Message: fmt.Sprintf("Please select an upgrade (current version: %s):", deployedVersion),
|
|
Options: internal.ReverseStringList(availableUpgrades),
|
|
}
|
|
if err := survey.AskOne(prompt, &chosenUpgrade); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
if internal.Force && chosenUpgrade == "" {
|
|
logrus.Warnf("%s is already upgraded to latest but continuing (--force/--chaos)", app.Name)
|
|
chosenUpgrade = deployedVersion
|
|
}
|
|
|
|
// if release notes written after git tag published, read them before we
|
|
// check out the tag and then they'll appear to be missing. this covers
|
|
// when we obviously will forget to write release notes before publishing
|
|
var releaseNotes string
|
|
for _, version := range versions {
|
|
parsedVersion, err := tagcmp.Parse(version)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
parsedChosenUpgrade, err := tagcmp.Parse(chosenUpgrade)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
if !(parsedVersion.Equals(parsedDeployedVersion)) && parsedVersion.IsLessThan(parsedChosenUpgrade) {
|
|
note, err := internal.GetReleaseNotes(app.Recipe, version)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if note != "" {
|
|
releaseNotes += fmt.Sprintf("%s\n", note)
|
|
}
|
|
}
|
|
}
|
|
|
|
if !internal.Chaos {
|
|
if err := recipePkg.EnsureVersion(app.Recipe, chosenUpgrade); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|
|
|
|
if internal.Chaos {
|
|
logrus.Warn("chaos mode engaged")
|
|
var err error
|
|
chosenUpgrade, err = recipePkg.ChaosVersion(app.Recipe)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
}
|
|
|
|
abraShPath := fmt.Sprintf("%s/%s/%s", config.RECIPES_DIR, app.Recipe, "abra.sh")
|
|
abraShEnv, err := config.ReadAbraShEnvVars(abraShPath)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
for k, v := range abraShEnv {
|
|
app.Env[k] = v
|
|
}
|
|
|
|
composeFiles, err := config.GetComposeFiles(app.Recipe, app.Env)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
deployOpts := stack.Deploy{
|
|
Composefiles: composeFiles,
|
|
Namespace: stackName,
|
|
Prune: false,
|
|
ResolveImage: stack.ResolveImageAlways,
|
|
}
|
|
compose, err := config.GetAppComposeConfig(app.Name, deployOpts, app.Env)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
config.ExposeAllEnv(stackName, compose, app.Env)
|
|
config.SetRecipeLabel(compose, stackName, app.Recipe)
|
|
config.SetChaosLabel(compose, stackName, internal.Chaos)
|
|
config.SetChaosVersionLabel(compose, stackName, chosenUpgrade)
|
|
config.SetUpdateLabel(compose, stackName, app.Env)
|
|
|
|
if err := internal.NewVersionOverview(app, deployedVersion, chosenUpgrade, releaseNotes); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
stack.WaitTimeout, err = config.GetTimeoutFromLabel(compose, stackName)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
logrus.Debugf("set waiting timeout to %d s", stack.WaitTimeout)
|
|
|
|
if err := stack.RunDeploy(cl, deployOpts, compose, stackName, internal.DontWaitConverge); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
postDeployCmds, ok := app.Env["POST_UPGRADE_CMDS"]
|
|
if ok && !internal.DontWaitConverge {
|
|
logrus.Debugf("run the following post-deploy commands: %s", postDeployCmds)
|
|
if err := internal.PostCmds(cl, app, postDeployCmds); err != nil {
|
|
logrus.Fatalf("attempting to run post deploy commands, saw: %s", err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|