-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cloud): Add cloud purge subcommand
Signed-off-by: Cezar Craciunoiu <[email protected]>
- Loading branch information
1 parent
635def4
commit fd84e23
Showing
2 changed files
with
223 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
// Copyright (c) 2024, Unikraft GmbH and The KraftKit Authors. | ||
// Licensed under the BSD-3-Clause License (the "License"). | ||
// You may not use this file except in compliance with the License. | ||
|
||
package purge | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/MakeNowJust/heredoc" | ||
"github.com/spf13/cobra" | ||
|
||
"kraftkit.sh/cmdfactory" | ||
"kraftkit.sh/config" | ||
crm "kraftkit.sh/internal/cli/kraft/cloud/certificate/remove" | ||
mrm "kraftkit.sh/internal/cli/kraft/cloud/img/remove" | ||
irm "kraftkit.sh/internal/cli/kraft/cloud/instance/remove" | ||
srm "kraftkit.sh/internal/cli/kraft/cloud/service/remove" | ||
"kraftkit.sh/internal/cli/kraft/cloud/utils" | ||
vrm "kraftkit.sh/internal/cli/kraft/cloud/volume/remove" | ||
"kraftkit.sh/log" | ||
"kraftkit.sh/tui/selection" | ||
|
||
kraftcloud "sdk.kraft.cloud" | ||
) | ||
|
||
type PurgeOptions struct { | ||
Force bool `local:"true" long:"force" short:"f" usage:"Continue removing everything regardless of any errors." default:"false"` | ||
All bool `local:"true" long:"all" short:"a" usage:"Remove from all metros." default:"false"` | ||
Metro string `noattribute:"true"` | ||
Token string `noattribute:"true"` | ||
Auth *config.AuthConfig `noattribute:"true"` | ||
Client kraftcloud.KraftCloud `noattribute:"true"` | ||
|
||
imagesRemoved bool | ||
} | ||
|
||
type purgeAccept string | ||
|
||
func (p purgeAccept) String() string { | ||
return string(p) | ||
} | ||
|
||
const ( | ||
PurgeAcceptYes purgeAccept = "yes" | ||
PurgeAcceptNo purgeAccept = "no" | ||
) | ||
|
||
func NewCmd() *cobra.Command { | ||
cmd, err := cmdfactory.New(&PurgeOptions{}, cobra.Command{ | ||
Short: "Remove everything on KraftCloud", | ||
Use: "purge", | ||
Args: cobra.NoArgs, | ||
Aliases: []string{"p"}, | ||
Annotations: map[string]string{ | ||
cmdfactory.AnnotationHelpGroup: "kraftcloud", | ||
}, | ||
Long: heredoc.Doc(` | ||
Remove everything on KraftCloud. | ||
`), | ||
Example: heredoc.Doc(` | ||
# Remove everything on KraftCloud from the default metro | ||
$ kraft cloud purge | ||
# Remove everything on KraftCloud from all metros | ||
$ kraft cloud purge -a | ||
# Remove everything on KraftCloud and continue regardless of any errors | ||
$ kraft cloud purge -f | ||
`), | ||
}) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
return cmd | ||
} | ||
|
||
// Purge removes everything from a metro. | ||
func Purge(ctx context.Context, opts *PurgeOptions) error { | ||
// 1. Instances | ||
err := irm.Remove(ctx, &irm.RemoveOptions{ | ||
Metro: opts.Metro, | ||
Token: opts.Token, | ||
All: true, | ||
}) | ||
if err != nil && !opts.Force { | ||
return fmt.Errorf("could not remove instances: %w", err) | ||
} | ||
|
||
// 2. Certificates | ||
err = crm.Remove(ctx, &crm.RemoveOptions{ | ||
Metro: opts.Metro, | ||
Token: opts.Token, | ||
All: true, | ||
Output: "list", | ||
}) | ||
if err != nil && !opts.Force { | ||
return fmt.Errorf("could not remove certificates: %w", err) | ||
} | ||
|
||
// 4. Services | ||
err = srm.Remove(ctx, &srm.RemoveOptions{ | ||
Metro: opts.Metro, | ||
Token: opts.Token, | ||
All: true, | ||
WaitEmpty: !opts.Force, | ||
}) | ||
if err != nil && !opts.Force { | ||
return fmt.Errorf("could not remove services: %w", err) | ||
} | ||
|
||
// 5. Volumes | ||
err = vrm.Remove(ctx, &vrm.RemoveOptions{ | ||
Metro: opts.Metro, | ||
Token: opts.Token, | ||
All: true, | ||
}) | ||
if err != nil && !opts.Force { | ||
return fmt.Errorf("could not remove volumes: %w", err) | ||
} | ||
|
||
// 6. Images | ||
if !opts.imagesRemoved { | ||
opts.imagesRemoved = true | ||
|
||
err = mrm.Remove(ctx, &mrm.RemoveOptions{ | ||
Metro: opts.Metro, | ||
Token: opts.Token, | ||
All: true, | ||
}) | ||
if err != nil && !opts.Force { | ||
return fmt.Errorf("could not remove images: %w", err) | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (opts *PurgeOptions) Pre(cmd *cobra.Command, _ []string) error { | ||
err := utils.PopulateMetroToken(cmd, &opts.Metro, &opts.Token) | ||
|
||
// Ignore the metro error if the user wants to remove from all metros | ||
if err != nil && !(opts.All && strings.Contains(err.Error(), "metro")) { | ||
return fmt.Errorf("could not populate metro and token: %w", err) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (opts *PurgeOptions) Run(ctx context.Context, _ []string) error { | ||
var metros []string | ||
var err error | ||
|
||
if opts.Auth == nil { | ||
opts.Auth, err = config.GetKraftCloudAuthConfig(ctx, opts.Token) | ||
if err != nil { | ||
return fmt.Errorf("could not retrieve credentials: %w", err) | ||
} | ||
} | ||
|
||
if opts.Client == nil { | ||
opts.Client = kraftcloud.NewClient( | ||
kraftcloud.WithToken(config.GetKraftCloudTokenAuthConfig(*opts.Auth)), | ||
) | ||
} | ||
|
||
if opts.All { | ||
metrosResp, err := opts.Client.Metros().List(ctx, true) | ||
if err != nil { | ||
return fmt.Errorf("could not list metros: %w", err) | ||
} | ||
|
||
for _, metro := range metrosResp { | ||
if !metro.Online { | ||
log.G(ctx).WithField("metro", metro.Code).Warn("kipping offline metro") | ||
continue | ||
} | ||
|
||
metros = append(metros, metro.Code) | ||
} | ||
} else { | ||
metros = append(metros, opts.Metro) | ||
} | ||
|
||
if len(metros) != 0 && !config.G[config.KraftKit](ctx).NoPrompt { | ||
purgeYesNo, err := selection.Select( | ||
fmt.Sprintf("You are about to delete all instances, services, certificates, volumes, images from the following metros: %s. Proceed?", | ||
strings.Join(metros, ", "), | ||
), | ||
PurgeAcceptNo, | ||
PurgeAcceptYes, | ||
) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if purgeYesNo == nil || *purgeYesNo == PurgeAcceptNo { | ||
return nil | ||
} | ||
} | ||
|
||
for _, metro := range metros { | ||
opts.Metro = metro | ||
|
||
log.G(ctx).WithField("metro", metro).Info("purging") | ||
|
||
if err := Purge(ctx, opts); err != nil { | ||
if !opts.Force { | ||
return fmt.Errorf("could not purge metro %q: %w", metro, err) | ||
} | ||
|
||
log.G(ctx).WithField("metro", metro).WithError(err).Warn("could not fully purge") | ||
} | ||
} | ||
|
||
return nil | ||
} |