forked from EnterpriseDB/edb-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
53 lines (46 loc) · 1.08 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
pg_version: 14
pg_instance_name: main
disable_logging: true
use_hostname: true
update_etc_file: true
# Database name used by repmgr
pg_repmgr_dbname: repmgr
# Database username used by repmgr
pg_repmgr_user: repmgr
# Password of the database user, will be generated if empty
pg_repmgr_user_password: ""
# Replication user created by setup_replication
pg_replication_user: repuser
# Repmgr log level
repmgr_log_level: INFO
# Repmgr log facility
repmgr_log_facility: STDERR
# Repmgr log file path when using STDERR
repmgr_log_file: /var/log/repmgr/repmgr.log
# Repmgr failover mode, could be 'automatic' for automatic failover, or
# 'manual'
repmgr_failover: automatic
# Number of connection attemps in case of failure before triggering an
# automatic failover.
repmgr_reconnect_attemps: 3
# Interval of time, in seconds, between each reconnect attemps
repmgr_reconnect_interval: 5
etc_hosts_lists: []
supported_os:
- CentOS7
- CentOS8
- RedHat7
- RedHat8
- Ubuntu20
- Debian9
- Debian10
- Rocky8
supported_pg_type:
- PG
supported_pg_version:
- 10
- 11
- 12
- 13
- 14