37 lines
987 B
YAML
37 lines
987 B
YAML
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
|
|
# Note: PHOENIX_SQL_DATABASE_URL is defined in secret.yaml since it contains the password
|
|
|
|
# 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: ""
|