diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-12-14 18:40:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 18:40:58 +0100 |
commit | a0894b5ecd6c64d30b82a7b79bc1e2e87c7f0a4e (patch) | |
tree | f29f820c85da215b2783ceab5d8284698ce85150 /docs | |
parent | 1884bd8873b6e60c0a590424cadd192cafb26c5f (diff) | |
parent | 50501f49a327a2f5c7f1c6746f9fde482c877387 (diff) | |
download | podman-a0894b5ecd6c64d30b82a7b79bc1e2e87c7f0a4e.tar.gz podman-a0894b5ecd6c64d30b82a7b79bc1e2e87c7f0a4e.tar.bz2 podman-a0894b5ecd6c64d30b82a7b79bc1e2e87c7f0a4e.zip |
Merge pull request #12586 from jmguzik/secret-cmd
Add secret list --filter to cli
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-secret-ls.1.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-secret-ls.1.md b/docs/source/markdown/podman-secret-ls.1.md index 27576f026..f33ccf41b 100644 --- a/docs/source/markdown/podman-secret-ls.1.md +++ b/docs/source/markdown/podman-secret-ls.1.md @@ -20,11 +20,24 @@ Format secret output using Go template. Omit the table headings from the listing of secrets. . +#### **--filter**, **-f**=*filter=value* + +Filter output based on conditions given. +Multiple filters can be given with multiple uses of the --filter option. + +Valid filters are listed below: + +| **Filter** | **Description** | +| ---------- | ----------------------------------------------------------------- | +| name | [Name] Secret name (accepts regex) | +| id | [ID] Full or partial secret ID | + ## EXAMPLES ``` $ podman secret ls $ podman secret ls --format "{{.Name}}" +$ podman secret ls --filter name=confidential ``` ## SEE ALSO |