[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 <tsweeney@redhat.com>
This commit is contained in:
tomsweeneyredhat
2023-02-17 15:05:54 -05:00
parent ca30f811a2
commit 7ddac33de9

View File

@ -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
```