Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ENVIRONMENT.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Environment Configuration Settings
- **SSH_USERNAME**: (optional) the username for WAL backups.
- **SSH_PORT**: (optional) the ssh port for WAL backups.
- **SSH_PRIVATE_KEY_PATH**: (optional) the path to the private key used for WAL backups.
- **SSH_PASSWORD**: (optional) the ssh password for WAL backups. **WARNING: You should instead use SSH_PRIVATE_KEY_PATH when your SSH server (WALG_SSH_PREFIX) is exposed to the internet.**
- **AZURE_STORAGE_ACCOUNT**: (optional) the azure storage account to use for WAL backups.
- **AZURE_STORAGE_ACCESS_KEY**: (optional) the access key for the azure storage account used for WAL backups.
- **AZURE_CLIENT_ID**: (optional) Client (application) ID of the Service Principal
Expand Down
2 changes: 1 addition & 1 deletion postgres-appliance/scripts/configure_spilo.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
KUBERNETES_DEFAULT_LABELS = '{"application": "spilo"}'
PATRONI_DCS = ('kubernetes', 'zookeeper', 'exhibitor', 'consul', 'etcd3', 'etcd')
AUTO_ENABLE_WALG_RESTORE = ('WAL_S3_BUCKET', 'WALG_S3_PREFIX', 'WALG_AZ_PREFIX', 'WALG_SSH_PREFIX')
WALG_SSH_NAMES = ['WALG_SSH_PREFIX', 'SSH_PRIVATE_KEY_PATH', 'SSH_USERNAME', 'SSH_PORT']
WALG_SSH_NAMES = ['WALG_SSH_PREFIX', 'SSH_PRIVATE_KEY_PATH', 'SSH_USERNAME', 'SSH_PASSWORD', 'SSH_PORT']


def parse_args():
Expand Down