abra/cli/app/undeploy.go

55 lines
1.2 KiB
Go
Raw Normal View History

package app
2021-08-29 23:36:42 +00:00
import (
"context"
"errors"
"coopcloud.tech/abra/cli/internal"
"coopcloud.tech/abra/client"
stack "coopcloud.tech/abra/client/stack"
2021-08-29 23:36:42 +00:00
"coopcloud.tech/abra/config"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
var appUndeployCommand = &cli.Command{
2021-09-04 23:34:56 +00:00
Name: "undeploy",
Aliases: []string{"u"},
Usage: "Undeploy an app",
Description: `
This does not destroy any of the application data. However, you should remain
vigilant, as your swarm installation will consider any previously attached
volumes as eligiblef or pruning once undeployed.
`,
2021-08-29 23:36:42 +00:00
Action: func(c *cli.Context) error {
appName := c.Args().First()
if appName == "" {
internal.ShowSubcommandHelpAndError(c, errors.New("no app name provided"))
}
appFiles, err := config.LoadAppFiles("")
if err != nil {
logrus.Fatal(err)
}
appEnv, err := config.GetApp(appFiles, appName)
if err != nil {
logrus.Fatal(err)
}
ctx := context.Background()
host := appFiles[appName].Server
cl, err := client.New(host)
2021-08-29 23:36:42 +00:00
if err != nil {
logrus.Fatal(err)
}
rmOpts := stack.Remove{Namespaces: []string{appEnv.StackName()}}
if err := stack.RunRemove(ctx, cl, rmOpts); err != nil {
2021-08-29 23:36:42 +00:00
logrus.Fatal(err)
}
return nil
},
}