Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1091d6bd14 |
@@ -42,10 +42,7 @@ ArgoCD homelab project
|
|||||||
|
|
||||||
| Application | Status |
|
| Application | Status |
|
||||||
| :--- | :---: |
|
| :--- | :---: |
|
||||||
| **amnezia** | [](https://ag.hexor.cy/applications/argocd/amnezia) |
|
|
||||||
| **comfyui** | [](https://ag.hexor.cy/applications/argocd/comfyui) |
|
| **comfyui** | [](https://ag.hexor.cy/applications/argocd/comfyui) |
|
||||||
| **doka2-lobby-list** | [](https://ag.hexor.cy/applications/argocd/doka2-lobby-list) |
|
|
||||||
| **firefly-iii** | [](https://ag.hexor.cy/applications/argocd/firefly-iii) |
|
|
||||||
| **furumi** | [](https://ag.hexor.cy/applications/argocd/furumi) |
|
| **furumi** | [](https://ag.hexor.cy/applications/argocd/furumi) |
|
||||||
| **gitea** | [](https://ag.hexor.cy/applications/argocd/gitea) |
|
| **gitea** | [](https://ag.hexor.cy/applications/argocd/gitea) |
|
||||||
| **greece-notifier** | [](https://ag.hexor.cy/applications/argocd/greece-notifier) |
|
| **greece-notifier** | [](https://ag.hexor.cy/applications/argocd/greece-notifier) |
|
||||||
@@ -56,7 +53,6 @@ ArgoCD homelab project
|
|||||||
| **k8s-secrets** | [](https://ag.hexor.cy/applications/argocd/k8s-secrets) |
|
| **k8s-secrets** | [](https://ag.hexor.cy/applications/argocd/k8s-secrets) |
|
||||||
| **khm** | [](https://ag.hexor.cy/applications/argocd/khm) |
|
| **khm** | [](https://ag.hexor.cy/applications/argocd/khm) |
|
||||||
| **lidarr** | [](https://ag.hexor.cy/applications/argocd/lidarr) |
|
| **lidarr** | [](https://ag.hexor.cy/applications/argocd/lidarr) |
|
||||||
| **llamacpp** | [](https://ag.hexor.cy/applications/argocd/llamacpp) |
|
|
||||||
| **matrix** | [](https://ag.hexor.cy/applications/argocd/matrix) |
|
| **matrix** | [](https://ag.hexor.cy/applications/argocd/matrix) |
|
||||||
| **mtproxy** | [](https://ag.hexor.cy/applications/argocd/mtproxy) |
|
| **mtproxy** | [](https://ag.hexor.cy/applications/argocd/mtproxy) |
|
||||||
| **n8n** | [](https://ag.hexor.cy/applications/argocd/n8n) |
|
| **n8n** | [](https://ag.hexor.cy/applications/argocd/n8n) |
|
||||||
|
|||||||
@@ -34,10 +34,16 @@ spec:
|
|||||||
image: fireflyiii/data-importer:version-2.3.4
|
image: fireflyiii/data-importer:version-2.3.4
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command:
|
command:
|
||||||
- php
|
- /bin/sh
|
||||||
- artisan
|
- -c
|
||||||
- importer:import
|
- |-
|
||||||
- /import/import.json
|
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:
|
env:
|
||||||
- name: FIREFLY_III_URL
|
- name: FIREFLY_III_URL
|
||||||
value: http://firefly-iii
|
value: http://firefly-iii
|
||||||
@@ -60,6 +66,10 @@ spec:
|
|||||||
key: ENABLE_BANKING_PRIVATE_KEY
|
key: ENABLE_BANKING_PRIVATE_KEY
|
||||||
- name: IMPORT_DIR_ALLOWLIST
|
- name: IMPORT_DIR_ALLOWLIST
|
||||||
value: /import
|
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
|
- name: TZ
|
||||||
value: Europe/London
|
value: Europe/London
|
||||||
- name: APP_ENV
|
- name: APP_ENV
|
||||||
|
|||||||
Reference in New Issue
Block a user