add jitter between volsync backups
This commit is contained in:
parent
c3443e87be
commit
1e512d354c
1 changed files with 12 additions and 11 deletions
|
@ -14,14 +14,11 @@ spec:
|
||||||
rules:
|
rules:
|
||||||
- name: set-volsync-movers-custom-config
|
- name: set-volsync-movers-custom-config
|
||||||
match:
|
match:
|
||||||
all:
|
resources:
|
||||||
- resources:
|
|
||||||
kinds: ["batch/v1/Job"]
|
kinds: ["batch/v1/Job"]
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app.kubernetes.io/created-by: volsync
|
app.kubernetes.io/created-by: volsync
|
||||||
- resources:
|
|
||||||
kinds: ["batch/v1/Job"]
|
|
||||||
namespaceSelector:
|
namespaceSelector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
volsync.backube/privileged-movers: "true"
|
volsync.backube/privileged-movers: "true"
|
||||||
|
@ -38,6 +35,10 @@ spec:
|
||||||
values: [11]
|
values: [11]
|
||||||
template:
|
template:
|
||||||
spec:
|
spec:
|
||||||
|
initContainers:
|
||||||
|
- name: jitter
|
||||||
|
image: docker.io/library/busybox:latest
|
||||||
|
command: ['sh', '-c', 'sleep $(shuf -i 0-60 -n 1)']
|
||||||
containers:
|
containers:
|
||||||
- name: restic
|
- name: restic
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|
Loading…
Reference in a new issue