From d8b26ac1b4393d33879c95612ee9cd1ea95acbaf Mon Sep 17 00:00:00 2001 From: "Eric D. Helms" Date: Thu, 3 Oct 2024 15:22:16 -0400 Subject: [PATCH] Fix typo in secret inspect examples Signed-off-by: Eric D. Helms --- docs/source/markdown/podman-secret-inspect.1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/markdown/podman-secret-inspect.1.md b/docs/source/markdown/podman-secret-inspect.1.md index dedb0573d9..50986bcf8c 100644 --- a/docs/source/markdown/podman-secret-inspect.1.md +++ b/docs/source/markdown/podman-secret-inspect.1.md @@ -51,14 +51,14 @@ Inspect the secret mysecret. $ podman secret inspect mysecret ``` -Inspect the secret mysecret and display the Name and Scope field. +Inspect the secret mysecret and display the Name and Labels field. ``` -$ podman secret inspect --format "{{.Name} {{.Scope}}" mysecret +$ podman secret inspect --format "{{.Spec.Name}} {{.Spec.Labels}}" mysecret ``` Inspect the secret mysecret and display the Name and SecretData fields. Note this will display the secret data to the screen. ``` -$ podman secret inspect --showsecret --format "{{.Name} {{.SecretData}}" mysecret +$ podman secret inspect --showsecret --format "{{.Spec.Name}} {{.SecretData}}" mysecret ``` ## SEE ALSO