Skip to content

Commit 61746ad

Browse files
committed
Fix typos in managing-secret-using-kustomize.md
1 parent 3ce6fe6 commit 61746ad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ generates a Secret that you can apply to the API server using `kubectl`.
2121

2222
You can generate a Secret by defining a `secretGenerator` in a
2323
`kustomization.yaml` file that references other existing files, `.env` files, or
24-
literal values. For example, the following instructions create a Kustomization
24+
literal values. For example, the following instructions create a kustomization
2525
file for the username `admin` and the password `1f2d1e2e67df`.
2626

2727
{{< note >}}
2828
The `stringData` field for a Secret does not work well with server-side apply.
2929
{{< /note >}}
3030

31-
### Create the Kustomization file
31+
### Create the kustomization file
3232

3333
{{< tabs name="Secret data" >}}
3434
{{< tab name="Literals" codelang="yaml" >}}
@@ -57,7 +57,7 @@ secretGenerator:
5757
- username.txt
5858
- password.txt
5959
```
60-
{{% /tab %}}}
60+
{{% /tab %}}
6161
{{% tab name=".env files" %}}
6262
You can also define the secretGenerator in the `kustomization.yaml` file by
6363
providing `.env` files. For example, the following `kustomization.yaml` file
@@ -72,7 +72,7 @@ secretGenerator:
7272
{{% /tab %}}
7373
{{< /tabs >}}
7474
75-
In all cases, you don't need to base64 encode the values. The name of the YAML
75+
In all cases, you don't need to encode the values in base64. The name of the YAML
7676
file **must** be `kustomization.yaml` or `kustomization.yml`.
7777

7878
### Apply the kustomization file
@@ -93,7 +93,7 @@ When a Secret is generated, the Secret name is created by hashing
9393
the Secret data and appending the hash value to the name. This ensures that
9494
a new Secret is generated each time the data is modified.
9595
96-
To verify that the Secret was created and to decode the Secret data,
96+
To verify that the Secret was created and to decode the Secret data,
9797
9898
```shell
9999
kubectl get -k -o jsonpath='{.data}'

0 commit comments

Comments
 (0)