-
Notifications
You must be signed in to change notification settings - Fork 787
/
get_vault.go
91 lines (75 loc) · 1.88 KB
/
get_vault.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
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
package cmd
import (
"io"
"github.com/jenkins-x/jx/pkg/kube/vault"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
)
type GetVaultOptions struct {
GetOptions
Namespace string
}
var (
getVaultLong = templates.LongDesc(`
Display one or more vaults
`)
getVaultExample = templates.Examples(`
# List all vaults
jx get vaults
`)
)
// NewCmdGetVault creates a new command for 'jx get vaults'
func NewCmdGetVault(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &GetVaultOptions{
GetOptions: GetOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "vaults",
Short: "Display one or more Vaults",
Long: getVaultLong,
Example: getVaultExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
options.addGetFlags(cmd)
cmd.Flags().StringVarP(&options.Namespace, "namespace", "n", "", "Namespace from where to list the vaults")
return cmd
}
// Run implements the command
func (o *GetVaultOptions) Run() error {
client, ns, err := o.KubeClientAndNamespace()
if err != nil {
return errors.Wrap(err, "creating kubernetes client")
}
if o.Namespace == "" {
o.Namespace = ns
}
vaultOperatorClient, err := o.VaultOperatorClient()
if err != nil {
return errors.Wrap(err, "creating vault operator client")
}
vaults, err := vault.GetVaults(client, vaultOperatorClient, o.Namespace)
if err != nil {
return err
}
table := o.createTable()
table.AddRow("NAME", "URL", "AUTH-SERVICE-ACCOUNT")
for _, vault := range vaults {
table.AddRow(vault.Name, vault.URL, vault.AuthServiceAccountName)
}
table.Render()
return nil
}