This role is for managing PgpoolII configuration parameters and user list.
Following are the dependencies and requirement of this role.
- Ansible
edb_devops.edb_postgres
->setup_pgpool2
- role for setting up PgpoolII 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
The rest of the variables can be configured and are available in the:
Below is the documentation of the rest of the variables:
This is the list of the configuration parameters to be changed in PgpoolII configuration file.
Example:
pgpool2_configuration:
- key: "port"
value: 6432
state: present
- key: "socket"
value: "/tmp"
# Add quotes around the value
quoted: true
state: present
- key: "ssl_ca_cert"
state: absent
Note: The PgpoolII parameters taking a string value must be quoted in the
configuration file, this behavior can be achieved by setting to quoted
attribute to true
. Default value is false
.
The state
attribute defines if the parameter must be present or not in the
configuration file. Default value is present
.
This is the list of PgpoolII user account to managed.
Example:
pgpool2_users:
- name: "my_user1"
pass: "password"
auth: scram
- name: "my_user2"
pass: "password"
auth: md5
- name: "my_user_to_be_removed"
state: absent
Two authentication methods are supported: scram
and md5
.
The state
attribute defines if the user must be present or not in the
authentication file. Default value is present
.
This is the list of PgpoolII pcp user account to managed.
Example:
pcp_users:
- name: "my_user1"
pass: "password"
- name: "my_user2"
pass: "password"
- name: "my_user_to_be_removed"
state: absent
The state
attribute defines if the user must be present or not in the
authentication file. Default value is present
.
This role does not have any dependencies, but a PgpoolII instance should have
been deployed beforehand with the setup_pgpool2
role.
Content of the inventory.yml
file:
---
all:
children:
pgpool2:
hosts:
pool1:
ansible_host: xxx.xxx.xxx.xxx
private_ip: xxx.xxx.xxx.xxx
# Private IP address of the PG primary node
primary_private_ip: xxx.xxx.xxx
primary:
hosts:
primary1:
ansible_host: xxx.xxx.xxx.xxx
private_ip: xxx.xxx.xxx.xxx
Below is an example of how to include the manage_pgpool2
role:
---
- hosts: pgpool2
name: Manage PgpoolII instances
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"
pgpool2_configuration:
- key: "port"
value: 6432
state: present
- key: "socket"
value: "/tmp"
# Add quotes around the value
quoted: true
state: present
- key: "ssl_ca_cert"
state: absent
pgpool2_users:
- name: "my_user1"
pass: "password"
auth: scram
- name: "my_user2"
pass: "password"
auth: md5
- name: "my_user_to_be_removed"
state: absent
roles:
- manage_pgpool2
Defining and adding variables is done in the set_fact
of the pre_tasks
.
All the variables are available at:
- roles/manage_pgpool2/defaults/main.yml
- roles/manage_pgpool2/vars/EPAS.yml
- roles/manage_pgpool2/vars/PG.yml
BSD
Author:
- Julien Tachoires
- Vibhor Kumar (Reviewer)
- EDB Postgres
- [email protected] www.enterprisedb.com