/* Copyright © 2020-2023 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package registry import ( "github.com/k3d-io/k3d/v5/cmd/util" "github.com/k3d-io/k3d/v5/pkg/client" l "github.com/k3d-io/k3d/v5/pkg/logger" "github.com/k3d-io/k3d/v5/pkg/runtimes" k3d "github.com/k3d-io/k3d/v5/pkg/types" "github.com/spf13/cobra" ) type registryDeleteFlags struct { All bool } // NewCmdRegistryDelete returns a new cobra command func NewCmdRegistryDelete() *cobra.Command { flags := registryDeleteFlags{} // create new cobra command cmd := &cobra.Command{ Use: "delete (NAME | --all)", Short: "Delete registry/registries.", Long: `Delete registry/registries.`, Aliases: []string{"del", "rm"}, ValidArgsFunction: util.ValidArgsAvailableRegistries, Run: func(cmd *cobra.Command, args []string) { nodes := parseRegistryDeleteCmd(cmd, args, &flags) if len(nodes) == 0 { l.Log().Infoln("No registries found") } else { for _, node := range nodes { if err := client.NodeDelete(cmd.Context(), runtimes.SelectedRuntime, node, k3d.NodeDeleteOpts{SkipLBUpdate: true}); err != nil { l.Log().Fatalln(err) } } } }, } // add subcommands // add flags cmd.Flags().BoolVarP(&flags.All, "all", "a", false, "Delete all existing registries") // done return cmd } // parseRegistryDeleteCmd parses the command input into variables required to delete nodes func parseRegistryDeleteCmd(cmd *cobra.Command, args []string, flags *registryDeleteFlags) []*k3d.Node { var nodes []*k3d.Node var err error if flags.All { nodes, err = client.NodeList(cmd.Context(), runtimes.SelectedRuntime) if err != nil { l.Log().Fatalln(err) } } if !flags.All && len(args) < 1 { l.Log().Fatalln("Expecting at least one registry name if `--all` is not set") } for _, name := range args { node, err := client.NodeGet(cmd.Context(), runtimes.SelectedRuntime, &k3d.Node{Name: name}) if err != nil { l.Log().Fatalln(err) } nodes = append(nodes, node) } nodes = client.NodeFilterByRoles(nodes, []k3d.Role{k3d.RegistryRole}, []k3d.Role{}) return nodes }