Merge pull request #1270 from derekmahar/patch-1

Correct name of secret in example in "Use-Case: Pod with ssh keys".
reviewable/pr1235/r1^2
devin-donnelly 2016-09-21 16:10:18 -07:00 committed by GitHub
commit 5e021e8a12
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ start until all the pod's volumes are mounted.
Create a secret containing some ssh keys:
```shell
$ kubectl create secret generic my-secret --from-file=ssh-privatekey=/path/to/.ssh/id_rsa --from-file=ssh-publickey=/path/to/.ssh/id_rsa.pub
$ kubectl create secret generic ssh-key-secret --from-file=ssh-privatekey=/path/to/.ssh/id_rsa --from-file=ssh-publickey=/path/to/.ssh/id_rsa.pub
```
**Security Note:** think carefully before sending your own ssh keys: other users of the cluster may have access to the secret. Use a service account which you want to have accessible to all the users with whom you share the kubernetes cluster, and can revoke if they are compromised.