Initial commit for abra app rm
This commit is contained in:
parent
edaedeac3a
commit
f528cf4cfa
@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/client"
|
"coopcloud.tech/abra/client"
|
||||||
@ -29,7 +30,6 @@ var appRemoveCommand = &cli.Command{
|
|||||||
Aliases: []string{"rm", "delete"},
|
Aliases: []string{"rm", "delete"},
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
VolumesFlag,
|
VolumesFlag,
|
||||||
internal.SecretsFlag,
|
|
||||||
},
|
},
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
// Check if app name was provided by user
|
// Check if app name was provided by user
|
||||||
@ -59,21 +59,69 @@ var appRemoveCommand = &cli.Command{
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
err = os.Remove(AppPath)
|
||||||
fmt.Println(AppPath) //to be replaced by a remove method
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
// Check if the app has secrets and remove them too
|
// Check if the app has secrets and remove them too
|
||||||
if internal.Secrets {
|
fs := filters.NewArgs()
|
||||||
fs := filters.NewArgs()
|
fs.Add("name", AppName)
|
||||||
fs.Add("name", AppName)
|
SecretList, err := cl.SecretList(ctx, types.SecretListOptions{Filters: fs})
|
||||||
SecretList, err := cl.SecretList(ctx, types.SecretListOptions{Filters: fs})
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
// TODO: Actually remove secrets
|
||||||
|
Secrets := make(map[string]string)
|
||||||
|
SecretNames := []string{}
|
||||||
|
for _, cont := range SecretList {
|
||||||
|
Secrets[cont.Spec.Annotations.Name] = cont.ID //we have to map the names to ID's
|
||||||
|
SecretNames = append(SecretNames, cont.Spec.Annotations.Name)
|
||||||
|
//cl.SecretRemove(ctx, cont.ID)
|
||||||
|
}
|
||||||
|
SecretNamesToRemove := []string{}
|
||||||
|
SecretsPrompt := &survey.MultiSelect{
|
||||||
|
Message: "Which secrets do you want to remove?",
|
||||||
|
Options: SecretNames,
|
||||||
|
Default: SecretNames,
|
||||||
|
}
|
||||||
|
survey.AskOne(SecretsPrompt, &SecretNamesToRemove)
|
||||||
|
for _, name := range SecretNamesToRemove {
|
||||||
|
err := cl.SecretRemove(ctx, Secrets[name])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fmt.Println(SecretList)
|
// SecretIDsToRemove = append(SecretIDsToRemove, Secrets[name])
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove the volumes if desired
|
// Remove the volumes if desired
|
||||||
|
if Volumes == true {
|
||||||
|
VolumeListOKBody, err := cl.VolumeList(ctx, fs)
|
||||||
|
VolumeList := VolumeListOKBody.Volumes
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
Vols := []string{}
|
||||||
|
for _, vol := range VolumeList {
|
||||||
|
Vols = append(Vols, vol.Name)
|
||||||
|
}
|
||||||
|
RemoveVols := []string{}
|
||||||
|
VolumesPrompt := &survey.MultiSelect{
|
||||||
|
Message: "Which volumes do you want to remove?",
|
||||||
|
Options: Vols,
|
||||||
|
Default: Vols,
|
||||||
|
}
|
||||||
|
survey.AskOne(VolumesPrompt, &RemoveVols)
|
||||||
|
fmt.Println("Volumes to remove: ", RemoveVols) //TODO: Replace with a remove method
|
||||||
|
for _, vol := range RemoveVols {
|
||||||
|
err := cl.VolumeRemove(ctx, vol, false) // false is for force removing
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
fmt.Println("Volumes will not be removed")
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user