122 lines
2.7 KiB
YAML
122 lines
2.7 KiB
YAML
global:
|
|
registry: docker.io
|
|
repository: freeleaps
|
|
nodeSelector: {}
|
|
dashboard:
|
|
enabled: false
|
|
name: freeleaps-prod-chat-dashboard
|
|
title: Chat Service Dashboard
|
|
metricsPrefix: freeleaps_chat
|
|
logIngest:
|
|
enabled: false
|
|
lokiEndpoint: http://loki-gateway.freeleaps-logging-system
|
|
logPathPattern: /app/log/chat/*.log
|
|
logPath: /app/log/chat
|
|
chat:
|
|
replicas: 1
|
|
image:
|
|
registry:
|
|
repository: freeleaps
|
|
name: chat
|
|
tag: 1.0.0
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 8007
|
|
protocol: TCP
|
|
resources:
|
|
requests:
|
|
cpu: "0.5"
|
|
memory: "512Mi"
|
|
limits:
|
|
cpu: "1"
|
|
memory: "1Gi"
|
|
# FIXME: Wait until the developers implements the probes APIs
|
|
probes: {}
|
|
services:
|
|
- name: chat-service
|
|
type: ClusterIP
|
|
port: 8007
|
|
targetPort: 8007
|
|
serviceMonitor:
|
|
enabled: false
|
|
labels:
|
|
release: kube-prometheus-stack
|
|
namespace: freeleaps-monitoring-system
|
|
interval: 30s
|
|
scrapeTimeout: ""
|
|
# Defaults to {}, which means doesn't have any ingress
|
|
ingresses: {}
|
|
configs:
|
|
# TZ
|
|
tz: "UTC"
|
|
# APP_NAME
|
|
appName: "chat"
|
|
# SERVICE_API_ACCESS_HOST
|
|
serviceApiAccessHost: "0.0.0.0"
|
|
# SERVICE_API_ACCESS_PORT
|
|
serviceApiAccessPort: "8013"
|
|
# MONGODB_NAME
|
|
mongodbName: ""
|
|
# MONGODB_URI
|
|
mongodbUri: ""
|
|
# MONGODB_PORT
|
|
mongodbPort: ''
|
|
# EMAIL_FROM
|
|
emailFrom: ""
|
|
# SITE_URL_ROOT
|
|
siteUrlRoot: ""
|
|
# JWT_SECRET_KEY
|
|
jwtSecretKey: ""
|
|
# JWT_ALGORITHM
|
|
jwtAlgorithm: ""
|
|
# STRIPE_API_KEY
|
|
stripeApiKey: ""
|
|
# STRIPE_WEBHOOK_SECRET
|
|
stripeWebhookSecret: ""
|
|
# STRIPE_ACCOUNT_WEBHOOK_SECRET
|
|
stripeAccountWebhookSecret: ""
|
|
# RABBITMQ_HOST
|
|
rabbitmqHost: ""
|
|
# RABBITMQ_PORT
|
|
rabbitmqPort:
|
|
# RABBITMQ_USERNAME
|
|
rabbitmqUsername: ""
|
|
# RABBITMQ_PASSWORD
|
|
rabbitmqPassword: ""
|
|
# FREELEAPS_DEVSVC_ENDPOINT
|
|
freeleapsDevsvcEndpoint: ""
|
|
# FREELEAPS_CONTENT_ENDPOINT
|
|
freeleapsContentEndpoint: ""
|
|
# FREELEAPS_CENTRAL_STORAGE_ENDPOINT
|
|
freeleapsCentralStorageEndpoint: ""
|
|
# FREELEAPS_CHAT_ENDPOINT
|
|
freeleapsChatEndpoint: ""
|
|
# FREELEAPS_PAYMENT_ENDPOINT
|
|
freeleapsPaymentEndpoint: ""
|
|
# FREELEAPS_AILAB_ENDPOINT
|
|
freeleapsAilabEndpoint: ""
|
|
# FREELEAPS_ENV
|
|
freeleapsEnv: ""
|
|
# CERT_PATH
|
|
certPath: ""
|
|
# REDIS_URL
|
|
redisUrl: ""
|
|
# REDIS_IS_CLUSTER
|
|
redisIsCluster: "false"
|
|
# METRICS_ENABLED
|
|
metricsEnabled: "false"
|
|
# PROBES_ENABLED
|
|
probesEnabled: "false"
|
|
vpa:
|
|
minAllowed:
|
|
enabled: false
|
|
cpu: "0.5"
|
|
memory: "512Mi"
|
|
maxAllowed:
|
|
enabled: true
|
|
cpu: "1"
|
|
memory: "1Gi"
|
|
controlledResources:
|
|
- cpu
|
|
- memory |