From bbb2c0a15b1c025aca2957bef51259bdc74f1609 Mon Sep 17 00:00:00 2001 From: Armando Ruocco Date: Wed, 13 May 2026 15:00:12 +0200 Subject: [PATCH] docs: document wal.restoreAdditionalCommandArgs The 'Extra Options' section enumerated every additionalCommandArgs knob except wal.restoreAdditionalCommandArgs, which already existed in the API. Add the missing bullet and example so the list is complete. Signed-off-by: Armando Ruocco --- web/docs/misc.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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/).