docs: custom postgresql.conf (#6623)

This commit is contained in:
Beyang Liu 2019-11-22 11:05:43 -08:00 committed by GitHub
parent dca855859c
commit f46923dc91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,7 @@ All notable changes to Sourcegraph are documented in this file.
- `sourcegraph/server` Docker deployments now support the environment variable `IGNORE_PROCESS_DEATH`. If set to true the container will keep running, even if a subprocess has died. This is useful when manually fixing problems in the container which the container refuses to start. For example a bad database migration.
- Search input now offers filter type suggestions [#6105](https://github.com/sourcegraph/sourcegraph/pull/6105).
- The keyboard shortcut <kbd>Ctrl</kbd>+<kbd>Space</kbd> in the search input shows a list of available filter types.
- Sourcegraph Kubernetes cluster site admins can configure PostgreSQL by specifying `postgresql.conf` via ConfigMap. [sourcegraph/deploy-sourcegraph#447](https://github.com/sourcegraph/deploy-sourcegraph/pull/447)
### Changed

View File

@ -20,6 +20,7 @@ Site administrators are the admins responsible for deploying, managing, and conf
- [Monitoring and tracing](monitoring_and_tracing.md)
- [Troubleshooting](monitoring_and_tracing.md#troubleshooting)
- [Repository permissions](repo/permissions.md)
- [PostgreSQL configuration](postgres-conf.md)
- [Upgrading PostgreSQL](postgres.md)
- [Using external databases (PostgreSQL and Redis)](external_database.md)
- [User data deletion](user_data_deletion.md)

View File

@ -0,0 +1,5 @@
# PostgreSQL configuration
Sourcegraph Kubernetes cluster site admins can override the default PostgreSQL configuration by supplying their own `postgresql.conf` file contents. These are specified in [`pgsql.ConfigMap.yaml`](https://github.com/sourcegraph/deploy-sourcegraph/blob/master/base/pgsql/pgsql.ConfigMap.yaml).
There is no officially supported way of customizing the PostgreSQL configuration in the single Docker image.