Skip to content

Commit acc7329

Browse files
authored
Merge pull request #68015 from skrthomas/OSDOCS-3301
OSDOCS-3301: Fixing typos/nits
2 parents 5c6e7f3 + 3cc6894 commit acc7329

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/nodes-pods-secrets-creating-web-console-secrets.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ For example:
2020
apiVersion: v1
2121
kind: Secret
2222
metadata:
23-
name: example
24-
namespace: <namespace>
23+
name: example
24+
namespace: <namespace>
2525
type: Opaque <1>
2626
data:
27-
username: <username>
28-
password: <password>
27+
username: <base64 encoded username>
28+
password: <base64 encoded password>
2929
stringData: <2>
30-
hostname: my app.mydomain.com
30+
hostname: myapp.mydomain.com
3131
----
3232
<1> This example specifies an opaque secret; however, you may see other secret types such as service account token secret, basic authentication secret, SSH authentication secret, or a secret that uses Docker configuration.
3333
<2> Entries in the `stringData` map are converted to base64 and the entry will then be moved to the `data` map automatically. This field is write-only; the value will only be returned via the `data` field.

0 commit comments

Comments
 (0)