podman-secret-exists - Man Page
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
History
April 2023, Originally compiled by Ygal Blum <ygal.blum@gmail.com>
Referenced By
The man page docker-secret-exists(1) is an alias of podman-secret-exists(1).