Compare commits

..
Author SHA1 Message Date
Gitea Actions Bot c355124a8a Auto-update README with current k8s applications
Keycloak Terraform / Terraform (pull_request) Successful in 17s
Generated by CI/CD workflow on 2026-08-01 13:44:29

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-08-01 13:44:29 +00:00
Aleksandr Bogomiakov 1091d6bd14 Enabled auto sync openbanking
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 10s
Check with kubeconform / lint (push) Successful in 9s
Auto-update README / Generate README and Create MR (push) Successful in 7s
2026-08-01 14:43:48 +01:00
+14 -4
View File
@@ -34,10 +34,16 @@ spec:
image: fireflyiii/data-importer:version-2.3.4
imagePullPolicy: IfNotPresent
command:
- php
- artisan
- importer:import
- /import/import.json
- /bin/sh
- -c
- |-
php artisan importer:import /import/import.json
status=$?
if [ "${status}" -eq 73 ]; then
echo "No new transactions; considering the sync successful."
exit 0
fi
exit "${status}"
env:
- name: FIREFLY_III_URL
value: http://firefly-iii
@@ -60,6 +66,10 @@ spec:
key: ENABLE_BANKING_PRIVATE_KEY
- name: IMPORT_DIR_ALLOWLIST
value: /import
# Recurring imports intentionally overlap their date range.
# Keep rejecting duplicates, but do not fail the Job for them.
- name: IGNORE_DUPLICATE_ERRORS
value: "true"
- name: TZ
value: Europe/London
- name: APP_ENV