53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
global:
|
|
registry: docker.io
|
|
repository: freeleaps
|
|
nodeSelector: {}
|
|
content:
|
|
replicas: 1
|
|
image:
|
|
registry:
|
|
repository: freeleaps
|
|
name: content
|
|
tag: 1.0.0
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 8013
|
|
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: content-service
|
|
type: ClusterIP
|
|
port: 8013
|
|
targetPort: 8013
|
|
# Defaults to {}, which means doesn't have any ingress
|
|
ingresses: {}
|
|
configs:
|
|
# TZ
|
|
tz: "America/Settle"
|
|
# APP_NAME
|
|
appName: "content"
|
|
# SERVICE_API_ACCESS_HOST
|
|
serviceApiAccessHost: "0.0.0.0"
|
|
# SERVICE_API_ACCESS_PORT
|
|
serviceApiAccessPort: "8013"
|
|
# MONGODB_NAME
|
|
mongodbName: ""
|
|
# MONGODB_PORT
|
|
mongodbPort: "27017"
|
|
# MONGODB_URI
|
|
mongodbUri: ""
|
|
# FREELEAPS_WWW_AS_AZURE_CLIENT_SECRET
|
|
freeleapsWwwAsAzureClientSecret: ""
|
|
# CENTRAL_STORAGE_WEBAPI_URL_BASE
|
|
centralStorageWebapiUrlBase: ""
|
|
|