123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package secret
- import (
- "fmt"
- "strings"
- "github.com/docker/docker/cli"
- "github.com/docker/docker/cli/command"
- "github.com/spf13/cobra"
- "golang.org/x/net/context"
- )
- type removeOptions struct {
- names []string
- }
- func newSecretRemoveCommand(dockerCli *command.DockerCli) *cobra.Command {
- return &cobra.Command{
- Use: "rm SECRET [SECRET...]",
- Aliases: []string{"remove"},
- Short: "Remove one or more secrets",
- Args: cli.RequiresMinArgs(1),
- RunE: func(cmd *cobra.Command, args []string) error {
- opts := removeOptions{
- names: args,
- }
- return runSecretRemove(dockerCli, opts)
- },
- }
- }
- func runSecretRemove(dockerCli *command.DockerCli, opts removeOptions) error {
- client := dockerCli.Client()
- ctx := context.Background()
- ids, err := getCliRequestedSecretIDs(ctx, client, opts.names)
- if err != nil {
- return err
- }
- var errs []string
- for _, id := range ids {
- if err := client.SecretRemove(ctx, id); err != nil {
- errs = append(errs, err.Error())
- continue
- }
- fmt.Fprintln(dockerCli.Out(), id)
- }
- if len(errs) > 0 {
- return fmt.Errorf("%s", strings.Join(errs, "\n"))
- }
- return nil
- }
|