diff --git a/web/docs/misc.md b/web/docs/misc.md index 77eb97a..1875961 100644 --- a/web/docs/misc.md +++ b/web/docs/misc.md @@ -41,6 +41,7 @@ configuration. - `.spec.configuration.data.additionalCommandArgs`: for `barman-cloud-backup` - `.spec.configuration.data.restoreAdditionalCommandArgs`: for `barman-cloud-restore` - `.spec.configuration.wal.archiveAdditionalCommandArgs`: for `barman-cloud-wal-archive` +- `.spec.configuration.wal.restoreAdditionalCommandArgs`: for `barman-cloud-wal-restore` Each field accepts a list of string arguments. If an argument is already configured elsewhere in the plugin, the duplicate will be ignored. @@ -86,6 +87,19 @@ spec: - "--read-timeout=60" ``` +### Example: Extra WAL Restore Options + +```yaml +kind: ObjectStore +metadata: + name: my-store +spec: + configuration: + wal: + restoreAdditionalCommandArgs: + - "--read-timeout=60" +``` + For a complete list of supported options, refer to the [official Barman Cloud documentation](https://docs.pgbarman.org/release/latest/).