cellarspoon
33ff04c686
All checks were successful
continuous-integration/drone/push Build is passing
114 lines
2.8 KiB
Go
114 lines
2.8 KiB
Go
package app
|
|
|
|
import (
|
|
"coopcloud.tech/abra/cli/internal"
|
|
"coopcloud.tech/abra/pkg/autocomplete"
|
|
"coopcloud.tech/abra/pkg/client"
|
|
"coopcloud.tech/abra/pkg/formatter"
|
|
"github.com/AlecAivazis/survey/v2"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var appVolumeListCommand = &cli.Command{
|
|
Name: "list",
|
|
Usage: "List volumes associated with an app",
|
|
Aliases: []string{"ls"},
|
|
BashComplete: autocomplete.AppNameComplete,
|
|
Action: func(c *cli.Context) error {
|
|
app := internal.ValidateApp(c)
|
|
|
|
volumeList, err := client.GetVolumes(c.Context, app.Server, app.Name)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
table := formatter.CreateTable([]string{"driver", "volume name"})
|
|
var volTable [][]string
|
|
for _, volume := range volumeList {
|
|
volRow := []string{
|
|
volume.Driver,
|
|
volume.Name,
|
|
}
|
|
volTable = append(volTable, volRow)
|
|
}
|
|
|
|
table.AppendBulk(volTable)
|
|
|
|
if table.NumLines() > 0 {
|
|
table.Render()
|
|
} else {
|
|
logrus.Warnf("no volumes created for %s", app.Name)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|
|
|
|
var appVolumeRemoveCommand = &cli.Command{
|
|
Name: "remove",
|
|
Usage: "Remove volume(s) associated with an app",
|
|
Description: `
|
|
This command supports removing volumes associated with an app. The app in
|
|
question must be undeployed before you try to remove volumes. See "abra app
|
|
undeploy <app>" for more.
|
|
|
|
The command is interactive and will show a multiple select input which allows
|
|
you to make a seclection. Use the "?" key to see more help on navigating this
|
|
interface.
|
|
|
|
Passing "--force" will select all volumes for removal. Be careful.
|
|
`,
|
|
ArgsUsage: "<app>",
|
|
Aliases: []string{"rm"},
|
|
Flags: []cli.Flag{
|
|
internal.ForceFlag,
|
|
},
|
|
Action: func(c *cli.Context) error {
|
|
app := internal.ValidateApp(c)
|
|
|
|
volumeList, err := client.GetVolumes(c.Context, app.Server, app.Name)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
volumeNames := client.GetVolumeNames(volumeList)
|
|
|
|
var volumesToRemove []string
|
|
if !internal.Force {
|
|
volumesPrompt := &survey.MultiSelect{
|
|
Message: "which volumes do you want to remove?",
|
|
Help: "'x' indicates selected, enter / return to confirm, ctrl-c to exit, vim mode is enabled",
|
|
VimMode: true,
|
|
Options: volumeNames,
|
|
Default: volumeNames,
|
|
}
|
|
if err := survey.AskOne(volumesPrompt, &volumesToRemove); err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
} else {
|
|
volumesToRemove = volumeNames
|
|
}
|
|
|
|
err = client.RemoveVolumes(c.Context, app.Server, volumesToRemove, internal.Force)
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
|
|
logrus.Info("volumes removed successfully")
|
|
|
|
return nil
|
|
},
|
|
BashComplete: autocomplete.AppNameComplete,
|
|
}
|
|
|
|
var appVolumeCommand = &cli.Command{
|
|
Name: "volume",
|
|
Aliases: []string{"vl"},
|
|
Usage: "Manage app volumes",
|
|
ArgsUsage: "<command>",
|
|
Subcommands: []*cli.Command{
|
|
appVolumeListCommand,
|
|
appVolumeRemoveCommand,
|
|
},
|
|
}
|