This commit is contained in:
Roger Oriol
2026-01-24 13:06:07 +01:00
parent f6520b199e
commit 04df1b0b3e
7 changed files with 341 additions and 1 deletions

36
phoenix/configmap.yaml Normal file
View File

@@ -0,0 +1,36 @@
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: ""