PostgreSQL
Environment variable
1 | |
Note
Any environment variable that starts with "POSTGRESQL_" will be handled as PostgreSQL. There can be multiple files paths definition for one ogion instance, for example POSTGRESQL_FOO_MY_DB1 and POSTGRESQL_BAR_MY_DB2. All currently supported versions are also supported by ogion. Changes in versions are automatically tracke . Params must be included in value, splited by single space for example "value1=1 value2=foo".
Params
| Name | Type | Description | Default |
|---|---|---|---|
| password | string[requried] | PostgreSQL database password. | - |
| cron_rule | string[requried] | Cron expression for backups, see https://crontab.guru/ for help. | - |
| user | string | PostgreSQL database username. | postgres |
| host | string | PostgreSQL database hostname. | localhost |
| port | int | PostgreSQL database port. | 5432 |
| db | string | PostgreSQL database name. | postgres |
| max_backups | int | Soft limit how many backups can live at once for backup target. Defaults to 7. This must makes sense with cron expression you use. For example if you want to have 7 day retention, and make backups at 5:00, max_backups=7 is fine, but if you make 4 backups per day, you would need max_backups=28. Limit is soft and can be exceeded if no backup is older than value specified in min_retention_days. Min 1 and max 998. Defaults to enviornment variable BACKUP_MAX_NUMBER, see Configuration. |
BACKUP_MAX_NUMBER |
| min_retention_days | int | Hard minimum backups lifetime in days. Ogion won't ever delete files before, regardles of other options. Min 0 and max 36600. Defaults to enviornment variable BACKUP_MIN_RETENTION_DAYS, see Configuration. |
BACKUP_MIN_RETENTION_DAYS |
Additional connection params
Extra variables that starts with conn_ will be passed AS IS to psql command underthehood as url-encoded connection params:
For example you can use it for SSL setup:
conn_sslmode=verify-caconn_sslrootcert=path-to-mounted-server-ca-fileconn_sslcert=path-to-mounted-client-ca-fileconn_sslkey=path-to-mounted-client-key-file
Examples
1 2 3 4 5 6 7 8 9 10 11 | |