Added firefly-iii open banking importer
Check with kubeconform / lint (push) Successful in 7s
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 5s
Auto-update README / Generate README and Create MR (push) Successful in 7s

This commit is contained in:
Ultradesu
2026-07-30 16:00:32 +01:00
parent 505bfec45a
commit 4662797118
2 changed files with 22 additions and 0 deletions
+19
View File
@@ -50,6 +50,15 @@ patches:
kind: CronJob kind: CronJob
name: firefly-iii-cron name: firefly-iii-cron
patch: |- patch: |-
- op: add
path: /spec/concurrencyPolicy
value: Forbid
- op: add
path: /spec/jobTemplate/spec/backoffLimit
value: 1
- op: add
path: /spec/jobTemplate/spec/activeDeadlineSeconds
value: 600
- op: add - op: add
path: /spec/jobTemplate/spec/template/spec/nodeSelector path: /spec/jobTemplate/spec/template/spec/nodeSelector
value: value:
@@ -61,6 +70,16 @@ patches:
operator: Equal operator: Equal
value: ai value: ai
effect: NoSchedule effect: NoSchedule
- op: replace
path: /spec/jobTemplate/spec/template/spec/containers/0/command
value:
- /bin/sh
- -ec
- >-
curl --fail --silent --show-error
--retry 30 --retry-delay 10 --retry-all-errors
--connect-timeout 5 --max-time 30
"http://firefly-iii:80/api/v1/cron/${STATIC_CRON_TOKEN}"
# A second independent filter in addition to ingressClassName. # A second independent filter in addition to ingressClassName.
- target: - target:
group: networking.k8s.io group: networking.k8s.io
+3
View File
@@ -19,6 +19,9 @@ spec:
matchLabels: matchLabels:
app.kubernetes.io/instance: firefly-iii app.kubernetes.io/instance: firefly-iii
app.kubernetes.io/name: firefly-iii app.kubernetes.io/name: firefly-iii
- podSelector:
matchLabels:
app.kubernetes.io/name: firefly-data-importer
# hostNetwork traffic is seen as node traffic rather than Pod traffic. # hostNetwork traffic is seen as node traffic rather than Pod traffic.
- ipBlock: - ipBlock:
cidr: 192.168.1.117/32 cidr: 192.168.1.117/32