-
Notifications
You must be signed in to change notification settings - Fork 362
Expand file tree
/
Copy pathfreight.go
More file actions
153 lines (127 loc) · 3.68 KB
/
freight.go
File metadata and controls
153 lines (127 loc) · 3.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package delete
import (
"context"
"errors"
"fmt"
"slices"
"github.com/spf13/cobra"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/cli-runtime/pkg/genericclioptions"
"k8s.io/cli-runtime/pkg/genericiooptions"
kargoapi "github.com/akuity/kargo/api/v1alpha1"
"github.com/akuity/kargo/pkg/cli/client"
"github.com/akuity/kargo/pkg/cli/config"
"github.com/akuity/kargo/pkg/cli/io"
"github.com/akuity/kargo/pkg/cli/kubernetes"
"github.com/akuity/kargo/pkg/cli/option"
"github.com/akuity/kargo/pkg/cli/templates"
"github.com/akuity/kargo/pkg/client/generated/core"
)
type deleteFreightOptions struct {
genericiooptions.IOStreams
*genericclioptions.PrintFlags
Config config.CLIConfig
ClientOptions client.Options
Project string
Names []string
}
func newFreightCommand(
cfg config.CLIConfig,
streams genericiooptions.IOStreams,
) *cobra.Command {
cmdOpts := &deleteFreightOptions{
Config: cfg,
IOStreams: streams,
PrintFlags: genericclioptions.NewPrintFlags("deleted").WithTypeSetter(kubernetes.GetScheme()),
}
cmd := &cobra.Command{
Use: "freight [--project=project] (NAME-OR-ALIAS ...)",
Short: "Delete freight by name or alias",
Args: option.MinimumNArgs(1),
Example: templates.Example(`
# Delete a Freight resource
kargo delete freight --project=my-project abc1234
# Delete a Freight resource by alias
kargo delete freight --project=my-project wonky-wombat
# Delete multiple Freight resources
kargo delete freight --project=my-project abc1234 def5678
# Delete a Freight resource in the default project
kargo config set-project my-project
kargo delete freight abc1234
`),
RunE: func(cmd *cobra.Command, args []string) error {
cmdOpts.complete(args)
if err := cmdOpts.validate(); err != nil {
return err
}
return cmdOpts.run(cmd.Context())
},
}
// Register the option flags on the command.
cmdOpts.addFlags(cmd)
// Set the input/output streams for the command.
io.SetIOStreams(cmd, cmdOpts.IOStreams)
return cmd
}
// addFlags adds the flags for the delete freight options to the provided
// command.
func (o *deleteFreightOptions) addFlags(cmd *cobra.Command) {
o.ClientOptions.AddFlags(cmd.PersistentFlags())
o.AddFlags(cmd)
option.Project(
cmd.Flags(), &o.Project, o.Config.Project,
"The Project for which to delete Freight. "+
"If not set, the default project will be used.",
)
}
// complete sets the options from the command arguments.
func (o *deleteFreightOptions) complete(args []string) {
o.Names = slices.Compact(args)
}
// validate performs validation of the options. If the options are invalid, an
// error is returned.
func (o *deleteFreightOptions) validate() error {
var errs []error
if o.Project == "" {
errs = append(errs, errors.New("project is required"))
}
if len(o.Names) == 0 {
errs = append(
errs,
errors.New("at least one freight name or alias is required"),
)
}
return errors.Join(errs...)
}
// run removes the Freight resource(s) based on the options.
func (o *deleteFreightOptions) run(ctx context.Context) error {
apiClient, err := client.GetClientFromConfig(
ctx, o.Config, o.ClientOptions,
)
if err != nil {
return fmt.Errorf("get client from config: %w", err)
}
printer, err := o.ToPrinter()
if err != nil {
return fmt.Errorf("create printer: %w", err)
}
var errs []error
for _, name := range o.Names {
if _, err := apiClient.Core.DeleteFreight(
core.NewDeleteFreightParams().
WithProject(o.Project).
WithFreightNameOrAlias(name),
nil,
); err != nil {
errs = append(errs, err)
continue
}
_ = printer.PrintObj(&kargoapi.Freight{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: o.Project,
},
}, o.Out)
}
return errors.Join(errs...)
}