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.
This commit is contained in:
parent
7c8d7542ab
commit
ff6bb8a671
|
@ -425,10 +425,10 @@ credentials.
|
||||||
Make the secrets:
|
Make the secrets:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ kubectl create secret generic prod-db-password --from-literal=user=produser --from-literal=password=Y4nys7f11
|
$ kubectl create secret generic prod-db-secret --from-literal=user=produser --from-literal=password=Y4nys7f11
|
||||||
secret "prod-db-password" created
|
secret "prod-db-secret" created
|
||||||
$ kubectl create secret generic test-db-password --from-literal=user=testuser --from-literal=password=iluvtests
|
$ kubectl create secret generic test-db-secret --from-literal=user=testuser --from-literal=password=iluvtests
|
||||||
secret "test-db-password" created
|
secret "test-db-secret" created
|
||||||
```
|
```
|
||||||
|
|
||||||
Now make the pods:
|
Now make the pods:
|
||||||
|
|
Loading…
Reference in New Issue