Files
kubernetes/manifests/nearle/nearle-config.yaml
Suriya 24dcc41720 fix: correct nearledb port to 5433 in nearle-config
DATABASE_PORT/DB_PORT were set to 5432, which doesn't match the
actual nearledb server port (5433). Live ConfigMap was already
corrected directly; this brings the Flux-synced source back in line
so reconciliation doesn't revert it.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-21 09:39:59 +05:30

24 lines
609 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: nearle-config
namespace: nearle
labels:
app: fiesta
data:
NATS_URL: "nats://66.116.226.161:4222"
LOG_LEVEL: "info"
# The stream is set to ORDERS as per your request
NATS_STREAM: "ORDERS"
# Base subject pattern - the app likely appends the path to this or uses it as a listener filter
NATS_SUBJECT: "api.>"
ALLOWED_ORIGINS: "*"
ENV: "production"
DATABASE_NAME: "nearledb"
DB_NAME: "nearledb"
DATABASE_PORT: "5433"
DB_PORT: "5433"
DATABASE_SERVER_HOST: "66.116.207.225"
DB_HOST: "66.116.207.225"
USER_CONTEXT_KEY: "nearle"