Skip to content

Commit c16bee1

Browse files
Fix schedule syntax
1 parent 3bd3e50 commit c16bee1

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

clusters/argo-svc.dd.soeren.cloud/apps/linkding/kustomization.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,22 @@ patches:
3535
patch: |-
3636
- op: add
3737
path: /spec/template/spec/priorityClassName
38-
value: prod-low-prio
38+
value: "prod-low-prio"
3939
- target:
40-
kind: VirtualService
41-
name: linkding
40+
kind: "VirtualService"
41+
name: "linkding"
4242
patch: |-
43-
- op: replace
44-
path: /spec/hosts
43+
- op: "replace"
44+
path: "/spec/hosts"
4545
value:
46-
- linkding.svc.dd.soeren.cloud
46+
- "linkding.svc.dd.soeren.cloud"
4747
- target:
4848
kind: "CronJob"
4949
name: "restic-postgres-backup"
5050
patch: |-
5151
- op: "replace"
5252
path: "/spec/schedule"
53-
value: "9 30 * * *"
54-
- op: replace
53+
value: "40 9 * * *"
54+
- op: "replace"
5555
path: "/spec/timeZone"
5656
value: "Europe/Berlin"

clusters/argo-svc.dd.soeren.cloud/apps/memos/kustomization.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ components:
1414
- ../../../../apps/memos/components/restic-postgres
1515
patches:
1616
- target:
17-
kind: VirtualService
18-
name: memos
17+
kind: "VirtualService"
18+
name: "memos"
1919
patch: |-
20-
- op: replace
21-
path: /spec/hosts
20+
- op: "replace"
21+
path: "/spec/hosts"
2222
value:
23-
- memos.svc.dd.soeren.cloud
23+
- "memos.svc.dd.soeren.cloud"
2424
- target:
2525
kind: "CronJob"
2626
name: "restic-postgres-backup"
2727
patch: |-
2828
- op: "replace"
2929
path: "/spec/schedule"
30-
value: "9 25 * * *"
31-
- op: replace
30+
value: "35 9 * * *"
31+
- op: "replace"
3232
path: "/spec/timeZone"
3333
value: "Europe/Berlin"
3434
configMapGenerator:

0 commit comments

Comments
 (0)