Skip to content

Commit 4c897e1

Browse files
shannonxtremeTim Bannister
andcommitted
Call config file a manifest and remove a 'please'
Co-authored-by: Tim Bannister <[email protected]>
1 parent 1955505 commit 4c897e1

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

content/en/docs/tasks/configmap-secret/managing-secret-using-config-file.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ description: Creating Secret objects using resource configuration file.
1313

1414
<!-- steps -->
1515

16-
## Create the Config file
16+
## Create the Secret {#create-the-config-file}
1717

18-
You can define the `Secret` object in a file first, in JSON or YAML format, and then create that object. The
18+
You can define the `Secret` object in a manifest first, in JSON or YAML format,
19+
and then create that object. The
1920
[Secret](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#secret-v1-core)
2021
resource contains two maps: `data` and `stringData`.
2122
The `data` field is used to store arbitrary data, encoded using base64. The
@@ -44,7 +45,7 @@ The following example stores two strings in a Secret using the `data` field.
4445
MWYyZDFlMmU2N2Rm
4546
```
4647

47-
1. Create the configuration file:
48+
1. Create the manifest:
4849

4950
```yaml
5051
apiVersion: v1

content/en/docs/tasks/configmap-secret/managing-secret-using-kubectl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ The commands `kubectl get` and `kubectl describe` avoid showing the contents
113113
of a `Secret` by default. This is to protect the `Secret` from being exposed
114114
accidentally, or from being stored in a terminal log.
115115

116-
To check the actual content of the encoded data, please refer to [Decoding the Secret](#decoding-secret).
116+
To check the actual content of the encoded data, refer to [Decoding the Secret](#decoding-secret).
117117

118118
## Decoding the Secret {#decoding-secret}
119119

0 commit comments

Comments
 (0)