Skip to content

Commit eae5dd2

Browse files
authored
Add quotes to boolean values in clustered backup and restore, closes influxdata/DAR#477 (#5839)
1 parent cca6347 commit eae5dd2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/influxdb3/clustered/admin/backup-restore.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ spec:
129129
containers:
130130
iox:
131131
env:
132-
INFLUXDB_IOX_CREATE_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: true
133-
INFLUXDB_IOX_DELETE_USING_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: true
132+
INFLUXDB_IOX_CREATE_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: 'true'
133+
INFLUXDB_IOX_DELETE_USING_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: 'true'
134134
INFLUXDB_IOX_KEEP_HOURLY_CATALOG_BACKUP_FILE_LISTS: '30d'
135135
INFLUXDB_IOX_KEEP_DAILY_CATALOG_BACKUP_FILE_LISTS: '90d'
136136
INFLUXDB_IOX_GC_OBJECTSTORE_CUTOFF: '14d'
@@ -140,20 +140,20 @@ spec:
140140
141141
#### INFLUXDB_IOX_CREATE_CATALOG_BACKUP_DATA_SNAPSHOT_FILES
142142
143-
Enable hourly Catalog snapshotting. The default is `false`. Set to `true`:
143+
Enable hourly Catalog snapshotting. The default is `'false'`. Set to `'true'`:
144144
145145
```yaml
146-
INFLUXDB_IOX_CREATE_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: true
146+
INFLUXDB_IOX_CREATE_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: 'true'
147147
```
148148
149149
#### INFLUXDB_IOX_DELETE_USING_CATALOG_BACKUP_DATA_SNAPSHOT_FILES
150150
151151
Enable a snapshot check when deleting files to ensure the Garbage Collector does
152152
not remove Parquet files from the object store that are associated with existing
153-
snapshots. The default is `false`. Set to `true`:
153+
snapshots. The default is `'false'`. Set to `'true'`:
154154
155155
```yaml
156-
INFLUXDB_IOX_DELETE_USING_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: true
156+
INFLUXDB_IOX_DELETE_USING_CATALOG_BACKUP_DATA_SNAPSHOT_FILES: 'true'
157157
```
158158
159159
> [!Caution]

0 commit comments

Comments
 (0)