67 lines
1.4 KiB
YAML
67 lines
1.4 KiB
YAML
global:
|
|
registry: docker.io
|
|
repository: freeleaps
|
|
nodeSelector: {}
|
|
dashboard:
|
|
enabled: false
|
|
name: freeleaps-prod-payment-dashboard
|
|
title: Payment Service Dashboard
|
|
metricsPrefix: freeleaps_payment
|
|
payment:
|
|
replicas: 1
|
|
image:
|
|
registry:
|
|
repository: freeleaps
|
|
name: payment
|
|
tag: 1.0.0
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 8006
|
|
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: payment-service
|
|
type: ClusterIP
|
|
port: 8006
|
|
targetPort: 8006
|
|
serviceMonitor:
|
|
enabled: false
|
|
labels: {}
|
|
namespace: ""
|
|
internal: 30s
|
|
scrapeTimeout: ""
|
|
# Defaults to {}, which means doesn't have any ingress
|
|
ingresses: {}
|
|
configs:
|
|
# TZ
|
|
tz: "America/Settle"
|
|
# APP_NAME
|
|
appName: "payment"
|
|
# SERVICE_API_ACCESS_HOST
|
|
serviceApiAccessHost: "0.0.0.0"
|
|
# SERVICE_API_ACCESS_PORT
|
|
serviceApiAccessPort: "8006"
|
|
# MONGODB_NAME
|
|
mongodbName: ""
|
|
# MONGODB_PORT
|
|
mongodbPort: "27017"
|
|
# MONGODB_URI
|
|
mongodbUri: ""
|
|
# STRIPE_API_KEY
|
|
stripeApiKey: ""
|
|
# SITE_URL_ROOT
|
|
siteUrlRoot: ""
|
|
# METRICS_ENABLED
|
|
metricsEnabled: "false"
|
|
# PROBES_ENABLED
|
|
probesEnabled: "false"
|