Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuschko committed Nov 30, 2023
1 parent 4266c7f commit 117dea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/26-secret/solution/solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $ kubectl create secret generic db-credentials --from-literal=db-password=passwd
secret/db-credentials created
```

The imperative command automatically base64-encodes the provided value of the literal. You can render the details of the Scret object from the command line. The assigned value to the key `db-password` is `cGFzc3dk`.
The imperative command automatically base64-encodes the provided value of the literal. You can render the details of the Secret object from the command line. The assigned value to the key `db-password` is `cGFzc3dk`.

```
$ kubectl get secret db-credentials -o yaml
Expand Down Expand Up @@ -69,4 +69,4 @@ DB_PASSWORD=passwd

> What is one of the benefit of using a Secret over a ConfigMap?
A Secret is distributed only to the nodes running Pods that actually require access to it. Moreover, Secrets are stored in memory and are never written to a physical storage.
A Secret is distributed only to the nodes running Pods that actually require access to it. Moreover, Secrets are stored in memory and are never written to a physical storage.

0 comments on commit 117dea8

Please sign in to comment.