8 lines
352 B
Markdown
8 lines
352 B
Markdown
### Postgres password
|
|
To create the postgres password secret you can use the following command.
|
|
kubectl apply -f postgres-namespace.yaml
|
|
kubectl apply -f postgres-pvc.yaml
|
|
kubectl create secret generic postgres-secret --from-literal=postgres-password=xxXxXxX -n postgres
|
|
kubectl apply -f postgres-deployment.yaml
|
|
kubectl apply -f postgres-service.yaml
|