Redirect to decoding a secret (#10594)

In this Document Encrypting Secret data at REST, the example to verify
decrypt secret is bit confusing, on running
$ kubectl describe secret secret1 -n default
"should match mykey: mydata" never match because data is enoded,
This commit redirects it to decoding the secret
This commit is contained in:
adisky
2018-11-19 08:10:10 +05:30
committed by k8s-ci-robot
parent b5a09f68de
commit b82bf96203
@@ -146,7 +146,8 @@ program to retrieve the contents of your secret.
kubectl describe secret secret1 -n default
```
should match `mykey: mydata`
should match `mykey: bXlkYXRh`, mydata is encoded, check [decoding a secret](/docs/concepts/configuration/secret#decoding-a-secret) to
completely decode the secret.
## Ensure all secrets are encrypted