Skip to content

Commit b93e6fb

Browse files
authored
Merge pull request #24947 from fadhilyori/fix-typo-configuration-secret
fix typo in configuration secret page
2 parents e3109f5 + b40ebda commit b93e6fb

File tree

1 file changed

+3
-3
lines changed
  • content/id/docs/concepts/configuration

1 file changed

+3
-3
lines changed

content/id/docs/concepts/configuration/secret.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dan _password_ yang harus digunakan oleh Pod-Pod tersebut berada pada mesin loka
6161
dalam bentuk _file-file_ `./username.txt` dan `./password.txt`.
6262

6363
```shell
64-
# Buatlah file yang selanjutnya akan digunakan pada contoh-contoh selanjutnya
64+
# Buatlah berkas yang selanjutnya akan digunakan pada contoh-contoh selanjutnya
6565
echo -n 'admin' > ./username.txt
6666
echo -n '1f2d1e2e67df' > ./password.txt
6767
```
@@ -271,7 +271,7 @@ dispesifikasikan di dalam sebuah _file_ `kustomization.yaml` di dalam sebuah dir
271271

272272
Sebagai contoh, untuk menghasilan sebuah Secret dari _file-file_ `./username.txt` dan `./password.txt`
273273
```shell
274-
# Membuat sebuah file kustomization.yaml dengan SecretGenerator
274+
# Membuat sebuah berkas kustomization.yaml dengan SecretGenerator
275275
cat <<EOF >./kustomization.yaml
276276
secretGenerator:
277277
- name: db-user-pass
@@ -310,7 +310,7 @@ username.txt: 5 bytes
310310
Sebagai contoh, untuk membuat sebuah Secret dari literal `username=admin` dan `password=secret`,
311311
kamu dapat menspesifikasikan _generator_ Secret pada _file_ `kustomization.yaml` sebagai
312312
```shell
313-
# Membuat sebuah file kustomization.yaml dengan menggunakan SecretGenerator
313+
# Membuat sebuah berkas kustomization.yaml dengan menggunakan SecretGenerator
314314
$ cat <<EOF >./kustomization.yaml
315315
secretGenerator:
316316
- name: db-user-pass

0 commit comments

Comments
 (0)