Installs and configures repmgr to enable and monitor PostgreSQL replication.
Nodes should be labeled as master or slave. Generally done within a role:
name 'master_role'
run_list('role[pg]', 'recipe[repmgr]')
override_attributes(
:repmgr => {
:replication => {
:role => 'master'
}
}
)
name 'slave_role'
run_list('role[pg]', 'recipe[repmgr]')
override_attributes(
:repmgr => {
:replication => {
:role => 'slave'
}
}
)
Slaves will search for master node within their current environment and sync to that master. By default slave nodes will allow read-only access.
- Repository: https://github.com/hw-cookbooks/repmgr
- IRC: Freenode @ #heavywater