2024-11-07 10:03:20 +00:00
|
|
|
### Postgres password
|
|
|
|
To create the postgres password secret you can use the following command.
|
2024-11-08 09:20:48 +00:00
|
|
|
kubectl apply -f postgres-namespace.yaml
|
|
|
|
kubectl apply -f postgres-pvc.yaml
|
2024-11-07 10:03:20 +00:00
|
|
|
kubectl create secret generic postgres-secret --from-literal=postgres-password=xxXxXxX -n postgres
|
2024-11-08 09:20:48 +00:00
|
|
|
kubectl apply -f postgres-deployment.yaml
|
|
|
|
kubectl apply -f postgres-service.yaml
|