From 7ddac33de90731120cde1bbfe30fec0cd09d1e80 Mon Sep 17 00:00:00 2001 From: tomsweeneyredhat Date: Fri, 17 Feb 2023 15:05:54 -0500 Subject: [PATCH] [v4.4.1-rhel] [CI:DOCS] Touch up secret man page This is a working theory fix. The man pages including the secret.md option are not resolving properly. The secret.md file is the only one with a text line with three back ticks on the start and end of the line. Elsewhere we have the backticks on separate lines and the text in it's own line. This might not fix the issue, but at the very least it makes things consistent. [NO NEW TESTS NEEDED] Signed-off-by: tomsweeneyredhat --- docs/source/markdown/options/secret.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/source/markdown/options/secret.md b/docs/source/markdown/options/secret.md index cd9a6a6e9d..477d9329d2 100644 --- a/docs/source/markdown/options/secret.md +++ b/docs/source/markdown/options/secret.md @@ -37,10 +37,16 @@ Secret Options Examples Mount at `/my/location/mysecret` with UID 1. -```--secret mysecret,target=/my/location/mysecret,uid=1``` +``` +--secret mysecret,target=/my/location/mysecret,uid=1 +``` Mount at `/run/secrets/customtarget` with mode 0777. -```--secret mysecret,target=customtarget,mode=0777``` +``` +--secret mysecret,target=customtarget,mode=0777 +``` Create a secret environment variable called `ENVSEC`. -```--secret mysecret,type=env,target=ENVSEC``` +``` +--secret mysecret,type=env,target=ENVSEC +```