Files
k3s-cluster/phoenix/configmap.yaml

37 lines
979 B
YAML
Raw Normal View History

2026-01-24 13:06:07 +01:00
apiVersion: v1
kind: ConfigMap
metadata:
name: phoenix-config
namespace: phoenix
data:
# Phoenix Server Configuration
PHOENIX_PORT: "6006"
PHOENIX_HOST: "::"
PHOENIX_WORKING_DIR: "/mnt/data"
# Database Configuration
PHOENIX_SQL_DATABASE_URL: "postgresql://postgres:postgres@postgres:5432/postgres"
# OTLP Configuration
PHOENIX_GRPC_PORT: "4317"
# Prometheus Metrics
PHOENIX_ENABLE_PROMETHEUS: "true"
# Server Limits
PHOENIX_SERVER_MAX_SPANS_QUEUE_SIZE: "20000"
# Optional: Enable authentication (uncomment to enable)
# PHOENIX_ENABLE_AUTH: "true"
# Optional: OIDC Configuration (uncomment and configure as needed)
# PHOENIX_OAUTH2_DEV_CLIENT_ID: ""
# PHOENIX_OAUTH2_DEV_OIDC_CONFIG_URL: ""
# PHOENIX_OAUTH2_DEV_DISPLAY_NAME: "OAuth Login"
# Optional: SMTP Configuration (uncomment and configure as needed)
# PHOENIX_SMTP_HOSTNAME: ""
# PHOENIX_SMTP_PORT: "587"
# PHOENIX_SMTP_USERNAME: ""
# PHOENIX_FROM_EMAIL_ADDRESS: ""