名称

podman-secret-exists - 检查给定的密钥是否存在

概要

podman secret exists secret

描述

podman secret exists 检查密钥是否存在。如果找到密钥,Podman 返回退出代码 0。否则返回 1。退出代码 125 表示存在其他问题。

选项

--help, -h

打印使用说明

示例

检查名为 mysecret 的密钥是否存在(该密钥实际上存在)。

$ podman secret exists mysecret
$ echo $?
0
$

检查名为 mypassword 的密钥是否存在(该密钥实际上不存在)。

$ podman secret exists mypassword
$ echo $?
1
$

参见

podman(1), podman-secret(1)

历史

2023 年 4 月,由 Ygal Blum <[email protected]> 编写