This Ansible role installs PostgreSQL or EnterpriseDB Postgresql Advanced Server versions: 10, 11, 12, 13 or 14 on machines previously configured.
Not all Distribution or versions are supported on all the operating systems available.
For more details refer to the Database engines supported section.
Note:
This role does not configure PostgreSQL nor EnterpriseDB Postgres Advanced
Server for replication it only installs PostgreSQL or EnterpriseDB Postgres
Advanced Server binaries across multiple nodes.
Should there be a need to configure a PostgreSQL or EnterpriseDB Postgres
Advanced Server Cluster for replication you can utilize the setup_replication
role.
The ansible playbook must be executed under an account that has full privileges.
The only dependencies required for this ansible galaxy role are:
- Ansible
community.general
Ansible Module - Utilized when creating aditional users during a Postgres Installedb_devops.postgres
->setup_repo
role for setting the repository on the systems
When executing the role via ansible these are the required variables:
- pg_version
Postgres Versions supported are: 10
, 11
, 12
, 13
and 14
- pg_type
Database Engine supported are: PG
and EPAS
These and other variables can be assigned in the pre_tasks
definition of the
section: How to include the install_dbserver role in your Playbook
The rest of the variables can be configured and are available in the:
The install_dbserver
role does not have any dependencies on any other roles.
Content of the inventory.yml
file:
---
all:
children:
pemserver:
hosts:
pemserver1:
ansible_host: 110.0.0.4
private_ip: 10.0.0.4
primary:
hosts:
primary1:
ansible_host: 110.0.0.1
private_ip: 10.0.0.1
pem_agent: true
pem_server_private_ip: 10.0.0.4
standby:
hosts:
standby1:
ansible_host: 110.0.0.2
private_ip: 10.0.0.2
upstream_node_private_ip: 10.0.0.1
replication_type: synchronous
pem_agent: true
pem_server_private_ip: 10.0.0.4
standby2:
ansible_host: 110.0.0.3
private_ip: 10.0.0.3
upstream_node_private_ip: 10.0.0.1
replication_type: asynchronous
pem_agent: true
pem_server_private_ip: 10.0.0.4
Note: don't forget to replace IP addresses.
Below is an example of how to include the install_dbserver
role:
---
- hosts: primary,standby,pemserver
name: Install Postgres binaries
become: yes
gather_facts: yes
collections:
- edb_devops.edb_postgres
pre_tasks:
- name: Initialize the user defined variables
set_fact:
pg_version: 14
pg_type: "PG"
roles:
- install_dbserver
Defining and adding variables is done in the set_fact
of the pre_tasks
.
All the variables are available at:
Distribution | 10 | 11 | 12 | 13 | 14 |
---|---|---|---|---|---|
CentOS 7 | ✅ | ✅ | ✅ | ✅ | ✅ |
Red Hat Linux 7 | ✅ | ✅ | ✅ | ✅ | ✅ |
RockyLinux 8 | ✅ | ✅ | ✅ | ✅ | ✅ |
Red Hat Linux 8 | ✅ | ✅ | ✅ | ✅ | ✅ |
Ubuntu 20.04 LTS (Focal) - x86_64 | ✅ | ✅ | ✅ | ✅ | ✅ |
Debian 9 (Stretch) - x86_64 | ✅ | ✅ | ✅ | ✅ | ✅ |
Debian 10 (Buster) - x86_64 | ✅ | ✅ | ✅ | ✅ | ✅ |
Distribution | 10 | 11 | 12 | 13 | 14 |
---|---|---|---|---|---|
CentOS 7 | ✅ | ✅ | ✅ | ✅ | ✅ |
Red Hat Linux 7 | ✅ | ✅ | ✅ | ✅ | ✅ |
RockyLinux 8 | ❌ | ❌ | ✅ | ✅ | ✅ |
Red Hat Linux 8 | ❌ | ❌ | ✅ | ✅ | ✅ |
Ubuntu 20.04 LTS (Focal) - x86_64 | ❌ | ❌ | ❌ | ✅ | ✅ |
Debian 9 (Stretch) - x86_64 | ❌ | ✅ | ✅ | ✅ | ✅ |
Debian 10 (Buster) - x86_64 | ❌ | ❌ | ✅ | ✅ | ✅ |
- ✅ - Tested and supported
# To deploy PostgreSQL version 14
$ ansible-playbook playbook.yml \
-u <ssh-user> \
--private-key <ssh-private-key> \
--extra-vars="pg_type=PG pg_version=14"
# To deploy EPAS version14
$ ansible-playbook playbook.yml \
-u <ssh-user> \
--private-key <ssh-private-key> \
--extra-vars="pg_type=EPAS pg_version=14"
BSD
Author:
- Doug Ortiz
- Vibhor Kumar (Co-Author)
- Julien Tachoires (Co-Author)
Contact: [email protected]