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: main.go
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -126,6 +126,9 @@ var (
126
126
operatorKubernetesOptionsstruct {
127
127
maxBatchSizeint64
128
128
}
129
+
operatorBackupstruct {
130
+
concurrentUploadsint
131
+
}
129
132
operatorTimeoutsstruct {
130
133
k8s time.Duration
131
134
arangoD time.Duration
@@ -167,6 +170,7 @@ func init() {
167
170
f.DurationVar(&operatorTimeouts.reconciliation, "timeout.reconciliation", globals.DefaultReconciliationTimeout, "The reconciliation timeout to the ArangoDB CR")
f.Int64Var(&operatorKubernetesOptions.maxBatchSize, "kubernetes.max-batch-size", globals.DefaultKubernetesRequestBatchSize, "Size of batch during objects read")
173
+
f.IntVar(&operatorBackup.concurrentUploads, "backup-concurrent-uploads", globals.DefaultBackupConcurrentUploads, "Number of concurrent uploads per deployment")
0 commit comments