Files
podman/docs/source/markdown/podman-secret-rm.1.md
Daniel J Walsh 32c2cea0f9 Remove future tense from man pages
Remove all will, would, could, should and use present tense.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2023-05-16 15:10:33 -04:00

892 B

% podman-secret-rm 1

NAME

podman-secret-rm - Remove one or more secrets

SYNOPSIS

podman secret rm [options] secret [...]

DESCRIPTION

Removes one or more secrets.

podman secret rm is safe to use on secrets that are in use by a container. The created container has access to the secret data because secrets are copied and mounted into the container when a container is created. If a secret is deleted and another secret is created with the same name, the secret inside the container does not change; the old secret value still remains.

OPTIONS

--all, -a

Remove all existing secrets.

--help

Print usage statement.

EXAMPLES

$ podman secret rm mysecret1 mysecret2

SEE ALSO

podman(1), podman-secret(1)

HISTORY

January 2021, Originally compiled by Ashley Cui acui@redhat.com