Merge pull request #23090 from pjhwa/fix-23089

Fix issue with k8s.io/docs/concepts/configuration/secret/
This commit is contained in:
Kubernetes Prow Robot
2020-08-22 08:19:39 -07:00
committed by GitHub
@@ -352,6 +352,8 @@ NAME TYPE DATA
db-user-pass-96mffmfh4k Opaque 2 51s
```
You can view a description of the secret:
```shell
kubectl describe secrets/db-user-pass-96mffmfh4k
```
@@ -1002,6 +1004,8 @@ The output is similar to:
secret "prod-db-secret" created
```
You can also create a secret for test environment credentials.
```shell
kubectl create secret generic test-db-secret --from-literal=username=testuser --from-literal=password=iluvtests
```