Improve example commands and output markdown (#13315)

pull/13326/head
Logan Rakai 2019-03-20 18:53:37 -06:00 committed by Kubernetes Prow Robot
parent 83d740c062
commit 4737c170ec
1 changed files with 3 additions and 5 deletions

View File

@ -623,10 +623,10 @@ start until all the pod's volumes are mounted.
Create a secret containing some ssh keys: Create a secret containing some ssh keys:
```shell ```shell
kubectl create secret generic ssh-key-secret --from-file=ssh-privatekey=/path/to/.ssh/id_rsa 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
``` ```
``` ```
--from-file=ssh-publickey=/path/to/.ssh/id_rsa.pub secret "ssh-key-secret" created
``` ```
{{< caution >}} {{< caution >}}
@ -676,10 +676,8 @@ credentials.
Make the secrets: Make the secrets:
```shell ```shell
kubectl create secret generic prod-db-secret --from-literal=username=produser kubectl create secret generic prod-db-secret --from-literal=username=produser --from-literal=password=Y4nys7f11
--from-literal=password=Y4nys7f11
``` ```
``` ```
secret "prod-db-secret" created secret "prod-db-secret" created
``` ```