-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathmain.yml
60 lines (51 loc) · 1.21 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
---
os: ""
pg_type: "PG"
pg_version: 14
pg_tuner_version: 1
pg_owner: "{{ 'enterprisedb' if pg_type == 'EPAS' else 'postgres' }}"
enable_core_dump: false
pg_instance_name: "main"
# setting validate_only to true allows you to validate setup on an existing node
# use_validation flag applies to deployment configuration and validation after setup
validate_only: false
use_validation: true
remove_only: false
# PGD Specific varaibles
pgd_version: 5
install_pgd: false
# EDB PG Tune
install_edb_postgres_tuner: false
edb_tuner_package: "edb-{{ 'as' if pg_type == 'EPAS' else 'pg' }}\
{{ pg_version }}-postgres-tuner{{ '-' if ansible_os_family == 'Debian' }}{{ pg_tuner_version }}"
# Debian specific variables
epas_deb_drop_cluster: "/usr/bin/epas_dropcluster"
deb_cluster_name: "main"
# PG Specific variables
pg_deb_drop_cluster: "/usr/bin/pg_dropcluster"
pg_service: "{{ lookup('edb_devops.edb_postgres.pg_service') }}"
pg_ssl: true
supported_os:
- CentOS7
- CentOS8
- RedHat7
- RedHat8
- RedHat9
- Ubuntu20
- Ubuntu22
- Debian9
- Debian10
- Rocky8
- Rocky9
- AlmaLinux8
- OracleLinux7
supported_pg_type:
- EPAS
- PG
supported_pg_version:
- 10
- 11
- 12
- 13
- 14
- 15