73 lines
1.8 KiB
YAML
73 lines
1.8 KiB
YAML
global:
|
|
registry: docker.io
|
|
repository: freeleaps
|
|
nodeSelector: {}
|
|
authentication:
|
|
replicas: 1
|
|
image:
|
|
registry:
|
|
repository: freeleaps
|
|
name: authentication
|
|
tag: 1.0.0
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 8004
|
|
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: authentication-service
|
|
type: ClusterIP
|
|
port: 8004
|
|
targetPort: 8004
|
|
# Defaults to {}, which means doesn't have any ingress
|
|
ingresses:
|
|
- name: authentication-ingress
|
|
host: alpha.authentication.freeleaps.mathmast.com
|
|
class: nginx
|
|
rules:
|
|
- path: "/*"
|
|
pathType: ImplementationSpecific
|
|
backend:
|
|
service:
|
|
name: authentication-service
|
|
port:
|
|
number: 8004
|
|
tls:
|
|
exists: false
|
|
issuerRef:
|
|
name: mathmast-dot-com
|
|
kind: ClusterIssuer
|
|
name: alpha.authentication.freeleaps.mathmast.com-cert
|
|
configs:
|
|
# TZ
|
|
tz: "America/Settle"
|
|
# APP_NAME
|
|
appName: "authentication"
|
|
# DEVSVC_WEBAPI_URL_BASE
|
|
devsvcWebapiUrlBase: "http://devsvc.freeleaps-alpha.svc.freeleaps.cluster:8007/api/devsvc"
|
|
# NOTIFICATION_WEBAPI_URL_BASE
|
|
notificationWebapiUrlBase: "http://notification.svc.freeleaps-alpha.freeleaps.cluster:8003/api/notification"
|
|
# JWT_SECRET_KEY
|
|
jwtSecretKey: ""
|
|
# JWT_ALGORITHM
|
|
jwtAlgorithm: "HS256"
|
|
# SERVICE_API_ACCESS_HOST
|
|
serviceApiAccessHost: "0.0.0.0"
|
|
# SERVICE_API_ACCESS_PORT
|
|
serviceApiAccessPort: "8004"
|
|
# MONGODB_NAME
|
|
mongodbName: ""
|
|
# MONGODB_PORT
|
|
mongodbPort: "27017"
|
|
# MONGODB_URL
|
|
mongodbUrl: ""
|