-
Notifications
You must be signed in to change notification settings - Fork 9
/
delete.go
42 lines (34 loc) · 1.27 KB
/
delete.go
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
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package secrets
import (
"context"
"github.com/spf13/cobra"
"k8s.io/utils/pointer"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/fnerrors"
)
func newDeleteCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "delete --secret {package_name}:{secret_name} [server]",
Short: "Deletes the specified secret value.",
Args: cobra.MaximumNArgs(1),
}
secretKey := cmd.Flags().String("secret", "", "The secret key, in {package_name}:{name} format.")
rawtext := cmd.Flags().Bool("rawtext", false, "If set to true, the bundle is not encrypted (use for testing purposes only).")
_ = cmd.MarkFlagRequired("secret")
env := fncobra.EnvFromValue(cmd, pointer.String("dev"))
locs := fncobra.LocationsFromArgs(cmd, env)
loc, bundle := bundleFromArgs(cmd, env, locs, nil)
return fncobra.With(cmd, func(ctx context.Context) error {
key, err := parseKey(*secretKey)
if err != nil {
return err
}
if !bundle.Delete(key.PackageName, key.Key) {
return fnerrors.New("no such key")
}
return writeBundle(ctx, loc, bundle, !*rawtext)
})
}