Skip to main content

Database Section

This section of the ESS installer GUI will only be present if you are using the Kubernetes deployment option or you have opted to use your own PostgreSQL for a Standalone deployment.

If you have not yet setup your PostgreSQL, you should ensure you have done so before proceeding, see the relevant PostgreSQL section from the Requirements and Recommendations page:

All settings configured via the UI in this section will be saved to your deployment.yml, with the contents of secrets being saved to secrets.yml. You will find specific config examples under each respective section.

Config Example
  • deployment.yml
    spec:
      components:
        synapse:
          config:
            postgresql:
    
  • secrets.yml
    data:
      postgresPassword:
    
spec:
  components:
    synapse:
      config:
        postgresql:
          database: test-database-name
          host: db.example.com
          passwordSecretKey: postgresPassword
          user: test-username