@@ -128,7 +128,7 @@ In order to deploy a Postgresql server we need :
- [ ] Deployment
- [ ] Service
* Persistent Volume Claim
##### Persistent Volume Claim
As a Docker image is immutable, you may need to define some persistent storage. In the case of a PostgreSQL container we need to persist the data of the database.
...
...
@@ -150,7 +150,7 @@ resources:
storage:1Gi
```
* PostgreSQL secret
##### PostgreSQL secret
We are here defining the PostgreSQL basic parameters : username, password and database. This `Secret` will be reused later in `Deployments`.