22 lines
557 B
YAML
22 lines
557 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: veza-config
|
|
namespace: veza-production
|
|
data:
|
|
app-env: "production"
|
|
api-url: "http://veza-backend-api:8080"
|
|
cors-allowed-origins: "https://app.veza.com,https://veza.com"
|
|
log-level: "WARN"
|
|
enable-debug: "false"
|
|
enable-profiling: "false"
|
|
rate-limit-enabled: "true"
|
|
rate-limit-limit: "100"
|
|
rate-limit-window: "60"
|
|
database-pool-size: "20"
|
|
redis-ttl: "86400" # 24 hours
|
|
cdn-enabled: "true"
|
|
cdn-base-url: "https://cdn.veza.com"
|
|
monitoring-enabled: "true"
|
|
alerting-enabled: "true"
|
|
|