add heavy loggin

This commit is contained in:
2026-03-26 10:59:56 -03:00
parent a85722f96a
commit beb0416280
27 changed files with 502 additions and 64 deletions

View File

@@ -8,4 +8,5 @@ data:
DEBUG: "1"
FASTAPI_PORT: "8702"
DETECTION_UI_PORT: "5175"
INFERENCE_URL: ""
GATEWAY_PORT: "8080"

View File

@@ -7,6 +7,14 @@ nodes:
- containerPort: 30080
hostPort: 80
protocol: TCP
- containerPort: 30379
hostPort: 6379
listenAddress: "0.0.0.0"
protocol: TCP
- containerPort: 30432
hostPort: 5432
listenAddress: "0.0.0.0"
protocol: TCP
extraMounts:
- hostPath: ${MEDIA_HOST_PATH}
containerPath: /mnt/media

View File

@@ -5,6 +5,9 @@ resources:
- ../../base
- minio-pvc.yaml
patchesStrategicMerge:
- local-config.yaml
patches:
# Gateway as NodePort for local access
- target:
@@ -30,6 +33,18 @@ patches:
path: /spec/ports/0/nodePort
value: 30379
# Postgres as NodePort for external access
- target:
kind: Service
name: postgres
patch: |
- op: replace
path: /spec/type
value: NodePort
- op: add
path: /spec/ports/0/nodePort
value: 30432
# MinIO with persistent storage + host media mount for seeding.
# PV survives pod restarts. Host mount is read-only for mc mirror seeding.
# Requires kind cluster created with MEDIA_HOST_PATH extraMount (see kind-create.sh).