blob: 0743faf2c4b0eb8a56622788422de2bf95657267 [file] [log] [blame]
---
- name: Configure Postgres Master
hosts: "{{ pg_master_node }}"
gather_facts: no
serial: 1
tags: ['pg', 'pgmaster']
roles:
- { role: apigee-opdk-setup-postgres-config, tags: ['pg-os-pre-req'] }
- { role: apigee-opdk-setup-postgres-master }
- { role: apigee-opdk-setup-status, tags: ['status'] }
- name: Configure Postgres Standby
hosts: "{{ pg_standby_node }}"
gather_facts: no
serial: 1
tags: ['pg', 'pgstandby']
roles:
- { role: apigee-opdk-stop-components, component_name: 'apigee-postgresql' }
- { role: apigee-opdk-setup-postgres-config, tags: ['pg-os-pre-req'], clear_pgdata: True }
- { role: apigee-opdk-setup-postgres-standby }
- { role: apigee-opdk-setup-status, tags: ['status'] }