forked from EnterpriseDB/edb-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yml
70 lines (58 loc) · 1.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
# default empty rpm repo
# port constants
pg_version: 14
disable_logging: true
pg_remote_ssl_src: false
use_patroni: false
force_replication: false
use_replication_slots: true
use_hostname: true
update_etc_file: true
enable_core_dump: false
pg_instance_name: main
pg_local_wal_archive_dir: ""
# EFM service information
efm_version: 4.5
efm_cluster_name: "{{ pg_instance_name }}"
efm_service: "edb-efm-{{ efm_cluster_name }}-{{ efm_version }}"
synchronous_standby_names: ""
standby_quorum_type: "any"
pass_dir: "~/.edb"
primary_private_ip: ""
primary_public_ip: ""
primary_host_name: ""
standby_names: []
pg_allow_ip_addresses: []
standby_physical_slots: []
etc_hosts_lists: []
upstream_public_ip: ""
upstream_hostname: ""
edb_audit_directory: ""
# Local path to SSL server key and certificate to be sent to the server
# if empty, they are generated
pg_ssl_key_file: ""
pg_ssl_cert_file: ""
pg_ssl_ca_file: ""
pg_ssl_crl_file: ""
supported_os:
- CentOS7
- CentOS8
- RedHat7
- RedHat8
- Ubuntu20
- Debian9
- Debian10
- Rocky8
- AlmaLinux8
- OracleLinux7
supported_pg_type:
- EPAS
- PG
supported_pg_version:
- 10
- 11
- 12
- 13
- 14
- 15