You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/cmd.go
+14-7Lines changed: 14 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -155,13 +155,15 @@ var (
155
155
concurrentUploadsint
156
156
}
157
157
operatorTimeoutsstruct {
158
-
k8s time.Duration
159
-
arangoD time.Duration
160
-
arangoDCheck time.Duration
161
-
reconciliation time.Duration
162
-
agency time.Duration
163
-
shardRebuild time.Duration
164
-
shardRebuildRetry time.Duration
158
+
k8s time.Duration
159
+
arangoD time.Duration
160
+
arangoDCheck time.Duration
161
+
reconciliation time.Duration
162
+
agency time.Duration
163
+
shardRebuild time.Duration
164
+
shardRebuildRetry time.Duration
165
+
backupArangoD time.Duration
166
+
backupUploadArangoD time.Duration
165
167
}
166
168
chaosOptionsstruct {
167
169
allowedbool
@@ -216,6 +218,8 @@ func init() {
216
218
f.DurationVar(&operatorTimeouts.reconciliation, "timeout.reconciliation", globals.DefaultReconciliationTimeout, "The reconciliation timeout to the ArangoDB CR")
217
219
f.DurationVar(&operatorTimeouts.shardRebuild, "timeout.shard-rebuild", globals.DefaultOutSyncedShardRebuildTimeout, "Timeout after which particular out-synced shard is considered as failed and rebuild is triggered")
218
220
f.DurationVar(&operatorTimeouts.shardRebuildRetry, "timeout.shard-rebuild-retry", globals.DefaultOutSyncedShardRebuildRetryTimeout, "Timeout after which rebuild shards retry flow is triggered")
221
+
f.DurationVar(&operatorTimeouts.backupArangoD, "timeout.backup-arangod", globals.BackupDefaultArangoClientTimeout, "The request timeout to the ArangoDB during backup calls")
222
+
f.DurationVar(&operatorTimeouts.backupUploadArangoD, "timeout.backup-upload", globals.BackupUploadArangoClientTimeout, "The request timeout to the ArangoDB during uploading files")
219
223
f.DurationVar(&shutdownOptions.delay, "shutdown.delay", defaultShutdownDelay, "The delay before running shutdown handlers")
220
224
f.DurationVar(&shutdownOptions.timeout, "shutdown.timeout", defaultShutdownTimeout, "Timeout for shutdown handlers")
0 commit comments