Skip to content

Commit

Permalink
Merge pull request containers#15873 from ashley-cui/prettysecrets
Browse files Browse the repository at this point in the history
Add --pretty to podman secret inspect
  • Loading branch information
openshift-merge-robot authored Sep 23, 2022
2 parents f658bbd + dc05d12 commit 4d475ae
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 5 deletions.
42 changes: 38 additions & 4 deletions cmd/podman/secrets/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,23 @@ var (
}
)

var format string
var (
format string
pretty bool
)

const (
prettyTemplate = `ID: {{.ID}}
Name: {{.Spec.Name}}
{{- if .Spec.Labels }}
Labels:
{{- range $k, $v := .Spec.Labels }}
- {{ $k }}{{if $v }}={{ $v }}{{ end }}
{{- end }}{{ end }}
Driver: {{.Spec.Driver.Name}}
Created at: {{.CreatedAt}}
Updated at: {{.UpdatedAt}}`
)

func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
Expand All @@ -34,8 +50,11 @@ func init() {
})
flags := inspectCmd.Flags()
formatFlagName := "format"
flags.StringVarP(&format, formatFlagName, "f", "", "Format volume output using Go template")
flags.StringVarP(&format, formatFlagName, "f", "", "Format inspect output using Go template")
_ = inspectCmd.RegisterFlagCompletionFunc(formatFlagName, common.AutocompleteFormat(&entities.SecretInfoReport{}))

prettyFlagName := "pretty"
flags.BoolVar(&pretty, prettyFlagName, false, "Print inspect output in human-readable format")
}

func inspect(cmd *cobra.Command, args []string) error {
Expand All @@ -46,7 +65,21 @@ func inspect(cmd *cobra.Command, args []string) error {
inspected = []*entities.SecretInfoReport{}
}

if cmd.Flags().Changed("format") {
switch {
case cmd.Flags().Changed("pretty"):
rpt := report.New(os.Stdout, cmd.Name())
defer rpt.Flush()

rpt, err := rpt.Parse(report.OriginUser, prettyTemplate)
if err != nil {
return err
}

if err := rpt.Execute(inspected); err != nil {
return err
}

case cmd.Flags().Changed("format"):
rpt := report.New(os.Stdout, cmd.Name())
defer rpt.Flush()

Expand All @@ -58,7 +91,8 @@ func inspect(cmd *cobra.Command, args []string) error {
if err := rpt.Execute(inspected); err != nil {
return err
}
} else {

default:
buf, err := json.MarshalIndent(inspected, "", " ")
if err != nil {
return err
Expand Down
4 changes: 4 additions & 0 deletions docs/source/markdown/podman-secret-inspect.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ Format secret output using Go template.

Print usage statement.

#### **--pretty**

Print inspect output in human-readable format


## EXAMPLES

Expand Down
18 changes: 17 additions & 1 deletion test/e2e/secret_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,23 @@ var _ = Describe("Podman secret", func() {
Expect(inspect.OutputToString()).To(Equal(secrID))
})

It("podman secret inspect with --pretty", func() {
secretFilePath := filepath.Join(podmanTest.TempDir, "secret")
err := os.WriteFile(secretFilePath, []byte("mysecret"), 0755)
Expect(err).To(BeNil())

session := podmanTest.Podman([]string{"secret", "create", "a", secretFilePath})
session.WaitWithDefaultTimeout()
secrID := session.OutputToString()
Expect(session).Should(Exit(0))

inspect := podmanTest.Podman([]string{"secret", "inspect", "--pretty", secrID})
inspect.WaitWithDefaultTimeout()
Expect(inspect).Should(Exit(0))
Expect(inspect.OutputToString()).To(ContainSubstring("Name:"))
Expect(inspect.OutputToString()).To(ContainSubstring(secrID))
})

It("podman secret inspect multiple secrets", func() {
secretFilePath := filepath.Join(podmanTest.TempDir, "secret")
err := os.WriteFile(secretFilePath, []byte("mysecret"), 0755)
Expand Down Expand Up @@ -125,7 +142,6 @@ var _ = Describe("Podman secret", func() {
inspect := podmanTest.Podman([]string{"secret", "inspect", "bogus"})
inspect.WaitWithDefaultTimeout()
Expect(inspect).To(ExitWithError())

})

It("podman secret ls", func() {
Expand Down

0 comments on commit 4d475ae

Please sign in to comment.