Files
podman/docs/source/markdown/podman-secret-exists.1.md
Ygal Blum 68dbddd979 Add support for secret exists
Add the command along with the abi and tunnel support
Add e2e tests
Add man page
Add apiv2 test to ensure return codes

Signed-off-by: Ygal Blum <ygal.blum@gmail.com>
2023-04-03 15:33:50 +03:00

44 lines
875 B
Markdown

% podman-secret-exists 1
## NAME
podman\-secret\-exists - Check if the given secret exists
## SYNOPSIS
**podman secret exists** *secret*
## DESCRIPTION
**podman secret exists** checks if a secret exists. Podman will return an exit code
of `0` when the secret is found. A `1` will be returned otherwise. An exit code of
`125` indicates there was another issue.
## OPTIONS
#### **--help**, **-h**
Print usage statement
## EXAMPLE
Check if a secret called `mysecret` exists (the secret does actually exist).
```
$ podman secret exists mysecret
$ echo $?
0
$
```
Check if a secret called `mypassword` exists (the secret does not actually exist).
```
$ podman secret exists mypassword
$ echo $?
1
$
```
## SEE ALSO
**[podman(1)](podman.1.md)**, **[podman-secret(1)](podman-secret.1.md)**
## HISTORY
April 2023, Originally compiled by Ygal Blum `<ygal.blum@gmail.com>`