Inconsistent secret name in db credentials example

The creation of the secret uses prod/test-db-password, but the remainder of the example uses prod/test-db-secret.
pull/527/head
Matt Doran 2016-05-18 16:44:46 +10:00
parent 7c8d7542ab
commit ff6bb8a671
1 changed files with 4 additions and 4 deletions

View File

@ -425,10 +425,10 @@ credentials.
Make the secrets:
```shell
$ kubectl create secret generic prod-db-password --from-literal=user=produser --from-literal=password=Y4nys7f11
secret "prod-db-password" created
$ kubectl create secret generic test-db-password --from-literal=user=testuser --from-literal=password=iluvtests
secret "test-db-password" created
$ kubectl create secret generic prod-db-secret --from-literal=user=produser --from-literal=password=Y4nys7f11
secret "prod-db-secret" created
$ kubectl create secret generic test-db-secret --from-literal=user=testuser --from-literal=password=iluvtests
secret "test-db-secret" created
```
Now make the pods: