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

@@ -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).