2026-01-16 23:52:56 -03:00
|
|
|
# services/finance/kustomization.yaml
|
|
|
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
|
|
|
kind: Kustomization
|
|
|
|
|
namespace: finance
|
|
|
|
|
resources:
|
|
|
|
|
- namespace.yaml
|
|
|
|
|
- serviceaccount.yaml
|
|
|
|
|
- portal-rbac.yaml
|
2026-01-17 07:38:38 -03:00
|
|
|
- finance-secrets-ensure-rbac.yaml
|
2026-01-16 23:52:56 -03:00
|
|
|
- actual-budget-data-pvc.yaml
|
|
|
|
|
- firefly-storage-pvc.yaml
|
refactor: restructure services layout, retire oceanus, add aether scaffolding
- Move flat service manifests into structured subdirs (apps/, bootstrap-jobs/,
repair-jobs/, migration-jobs/, validation-jobs/, node-ops/, networking/)
- Retire oneoffs/ directories across services
- Remove oceanus cluster and its host roles; add aether cluster + terraform scaffolding
- Reorganize scripts/ into ops/, render/, sync/, manual-tests/
- Add Makefile with render/validate/test/flux targets and repo-structure tests
- Update flux-system application CRs to the new paths
- Add hermes-automated-triage-24h-plan knowledge doc (+ comms mirror)
- Refresh knowledge catalogs, dashboards, vmalert rules, quality contract
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-05 16:21:36 -03:00
|
|
|
- bootstrap-jobs/finance-secrets-ensure-job.yaml
|
2026-01-16 23:52:56 -03:00
|
|
|
- actual-budget-deployment.yaml
|
|
|
|
|
- firefly-deployment.yaml
|
|
|
|
|
- firefly-user-sync-cronjob.yaml
|
|
|
|
|
- firefly-cronjob.yaml
|
|
|
|
|
- actual-budget-service.yaml
|
|
|
|
|
- firefly-service.yaml
|
|
|
|
|
- actual-budget-ingress.yaml
|
|
|
|
|
- firefly-ingress.yaml
|
|
|
|
|
generatorOptions:
|
|
|
|
|
disableNameSuffixHash: true
|
|
|
|
|
configMapGenerator:
|
|
|
|
|
- name: actual-openid-bootstrap-script
|
|
|
|
|
files:
|
|
|
|
|
- actual_openid_bootstrap.mjs=scripts/actual_openid_bootstrap.mjs
|
|
|
|
|
- name: firefly-user-sync-script
|
|
|
|
|
files:
|
|
|
|
|
- firefly_user_sync.php=scripts/firefly_user_sync.php
|
2026-01-17 00:54:49 -03:00
|
|
|
- name: finance-secrets-ensure-script
|
|
|
|
|
files:
|
2026-01-17 02:22:59 -03:00
|
|
|
- finance_secrets_ensure.py=scripts/finance_secrets_ensure.py
|