Add role-based filtering and imporve code

This commit is contained in:
Urtzi Alfaro
2025-10-15 16:12:49 +02:00
parent 96ad5c6692
commit 8f9e9a7edc
158 changed files with 11033 additions and 1544 deletions

View File

@@ -142,6 +142,25 @@ k8s_resource('demo-session-db', labels=['databases'])
k8s_resource('redis', labels=['infrastructure'])
k8s_resource('rabbitmq', labels=['infrastructure'])
# Nominatim geocoding service (excluded in dev via kustomize patches)
# Uncomment these if you want to test nominatim locally
# k8s_resource('nominatim',
# resource_deps=['nominatim-init'],
# labels=['infrastructure'])
# k8s_resource('nominatim-init',
# labels=['data-init'])
# Monitoring stack
#k8s_resource('prometheus',
# labels=['monitoring'])
#k8s_resource('grafana',
# resource_deps=['prometheus'],
# labels=['monitoring'])
#k8s_resource('jaeger',
# labels=['monitoring'])
# Migration jobs depend on databases
k8s_resource('auth-migration', resource_deps=['auth-db'], labels=['migrations'])
k8s_resource('tenant-migration', resource_deps=['tenant-db'], labels=['migrations'])