mirror of
https://github.com/outbackdingo/patroni.git
synced 2026-08-25 14:53:37 +00:00
Create a superuser role with a given name and password (or change the postgres role if the name is not given). Also, create an admin role with the name and the password provided. The admin role has CREATEDB and CREATEROLE permisssions, effectively making it the most powerful role after the superuser.
31 lines
682 B
YAML
31 lines
682 B
YAML
loop_wait: 10
|
|
aws_use_host_address: "on"
|
|
etcd:
|
|
scope: batman
|
|
ttl: 30
|
|
host: 127.0.0.1:4001
|
|
postgresql:
|
|
name: postgresql0
|
|
listen: 127.0.0.1:5432
|
|
data_dir: data/postgresql0
|
|
replication:
|
|
username: replicator
|
|
password: rep-pass
|
|
network: 127.0.0.1/32
|
|
superuser:
|
|
password: zalando
|
|
admin:
|
|
username: admin
|
|
password: admin
|
|
#recovery_conf:
|
|
#restore_command: cp ../wal_archive/%f %p
|
|
parameters:
|
|
archive_mode: "on"
|
|
wal_level: hot_standby
|
|
archive_command: mkdir -p ../wal_archive && cp %p ../wal_archive/%f
|
|
max_wal_senders: 5
|
|
wal_keep_segments: 8
|
|
archive_timeout: 1800s
|
|
max_replication_slots: 5
|
|
hot_standby: "on"
|