87 lines
1.9 KiB
YAML
87 lines
1.9 KiB
YAML
global:
|
|
registry: docker.io
|
|
repository: freeleaps
|
|
nodeSelector: {}
|
|
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
|
|
# 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_HOST
|
|
mongodbHost: ""
|
|
# 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: "" |