Skip to content

Latest commit

 

History

History
234 lines (171 loc) · 7.37 KB

README.md

File metadata and controls

234 lines (171 loc) · 7.37 KB

setup_repo

This Ansible Role sets up and configures the repositories from which packages will be retrieved for any PostgresSQL or EnterpriseDB Postgres Advanced Server installations.

Not all Distribution or versions are supported on all the operating systems available.

For more details refer to the Database engines supported section.

Note: Should there be a need to install and/or configure a PostgreSQL or EnterpriseDB Postgres Advanced Server Cluster you can utilize the install_dbserver role.

The ansible playbook must be executed under an account that has full privileges.

Requirements

The only dependency required for this ansible galaxy role is:

  1. Ansible

Role variables

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

  • enable_edb_repo

Configure access to EDB package repository. Default: true

  • repo_username

Username used to access EDB package repository. Required when enable_edb_repo is set to true.

  • repo_password

Password used to access EDB package repository. Required when enable_edb_repo is set to true.

  • yum_additional_repos

List of additional YUM repositories. List items are dictionnaries:

  • name - Repository name
  • description - Repository description
  • baseurl - Repository URL
  • gpgkey - GPG key locatio. Default: None
  • gpgcheck - Enable package signature checking with GPG. Default: false

Example:

      # Additional repositories
      yum_additional_repos:
        - name: "Additional Repo. 1"
          description: "Description of the repo."
          baseurl: https://my.repo.internal/CentOS$releasever-$basearch
          gpgkey: https://my.repo.internal/key.asc
          gpgcheck: true
        - name: "Local Repo"
          baseurl: file:///opt/my_local_repo
  • apt_additional_repos

List of additional APT repositories. List items are dictionnaries:

  • repo - Debian repository connection string
  • filename - Repository file name on disk: <filename>.list

The rest of the variables can be configured and are available in the:

Dependencies

The setup_repo role does not have any dependencies on any other roles.

Example Playbook

Example of inventory file

Content of the inventory.yml file:

---
all:
  children:
    primary:
      hosts:
        primary1:
          ansible_host: 110.0.0.1
          private_ip: 10.0.0.1
    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
        standby2:
          ansible_host: 110.0.0.3
          private_ip: 10.0.0.3
          upstream_node_private_ip: 10.0.0.1
          replication_type: asynchronous

Note: don't forget to replace IP addresses.

How to include the setup_repo role in your Playbook

Below is an example of how to include the setup_repo role for setting up repositories access to EDB Postgres Advanced Server packages in version 14:

---
- hosts: all
  name: Setup EPAS Repositories
  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: "EPAS"
        repo_username: "<edb-repo-username>"
        repo_password: "<edb-repo-password>"

  roles:
    - setup_repo

Following is another example of how to include the setup_repo role for setting up repositories access to PostgreSQL packages in version 14:

---
- hosts: all
  name: Setup PostgreSQL Repositories
  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"
        enable_edb_repo: false

  roles:
    - setup_repo

Defining and adding variables is done in the set_fact of the pre_tasks.

All the variables are available at:

Database engines supported

PostgreSQL

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

EnterpriseDB Postgres Advanced Server

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

Playbook execution examples

# To setup community repos
$ ansible-playbook playbook.yml \
  -u <ssh-user> \
  --private-key <ssh-private-key> \
  --extra-vars="pg_type=PG pg_version=14 enable_edb_repo=false"
# To setup EDB repos
$ ansible-playbook playbook.yml \
  -u <ssh-user> \
  --private-key <ssh-private-key> \
  --extra-vars="pg_type=EPAS pg_version=14 repo_username=<edb-repo-username> repo_password=<edb-repo-password>"

License

BSD

Author information

Author:

  • Doug Ortiz
  • Vibhor Kumar (Co-Author)
  • Julien Tachoires (Co-Author)

Contact: edb-devops@enterprisedb.com