127 lines
3.2 KiB
YAML
127 lines
3.2 KiB
YAML
|
image:
|
||
|
repository: tccr.io/truecharts/kitchenowl-web
|
||
|
pullPolicy: IfNotPresent
|
||
|
tag: latest@sha256:a3f487e78375cc514092473f91f9d89dcf1f04fc9a03e6cad9a6f41eec8382b9
|
||
|
backendImage:
|
||
|
repository: tccr.io/truecharts/kitchenowl-backend
|
||
|
pullPolicy: IfNotPresent
|
||
|
tag: latest@sha256:ded34fe79a363d6a098f97f81a546bc991f7d1cb4cab0c4236ff170f49b58063
|
||
|
|
||
|
service:
|
||
|
main:
|
||
|
enabled: true
|
||
|
targetSelector: main
|
||
|
ports:
|
||
|
main:
|
||
|
enabled: true
|
||
|
targetSelector: main
|
||
|
protocol: http
|
||
|
targetPort: 80
|
||
|
port: 10246
|
||
|
backend:
|
||
|
enabled: true
|
||
|
targetSelector: backend
|
||
|
ports:
|
||
|
backend:
|
||
|
enabled: true
|
||
|
targetSelector: backend
|
||
|
protocol: http
|
||
|
targetPort: 5000
|
||
|
port: 10247
|
||
|
|
||
|
persistence:
|
||
|
data:
|
||
|
enabled: true
|
||
|
targetSelector:
|
||
|
backend:
|
||
|
backend:
|
||
|
mountPath: /data
|
||
|
|
||
|
portal:
|
||
|
open:
|
||
|
enabled: true
|
||
|
|
||
|
securityContext:
|
||
|
container:
|
||
|
readOnlyRootFilesystem: false
|
||
|
runAsNonRoot: false
|
||
|
runAsUser: 0
|
||
|
runAsGroup: 0
|
||
|
|
||
|
workload:
|
||
|
main:
|
||
|
type: Deployment
|
||
|
strategy: RollingUpdate
|
||
|
replicas: 1
|
||
|
podSpec:
|
||
|
containers:
|
||
|
main:
|
||
|
enabled: true
|
||
|
primary: true
|
||
|
envFrom:
|
||
|
- configMapRef:
|
||
|
name: kitchenowl-config
|
||
|
env:
|
||
|
FRONT_URL: "{{ .Values.workload.main.podSpec.containers.main.env.FRONT_URL }}"
|
||
|
probes:
|
||
|
liveness:
|
||
|
type: http
|
||
|
path: /
|
||
|
port: "{{ .Values.service.main.ports.main.targetPort }}"
|
||
|
readiness:
|
||
|
type: http
|
||
|
path: /
|
||
|
port: "{{ .Values.service.main.ports.main.targetPort }}"
|
||
|
startup:
|
||
|
type: http
|
||
|
path: /
|
||
|
port: "{{ .Values.service.main.ports.main.targetPort }}"
|
||
|
backend:
|
||
|
enabled: true
|
||
|
type: Deployment
|
||
|
podSpec:
|
||
|
containers:
|
||
|
backend:
|
||
|
enabled: true
|
||
|
primary: true
|
||
|
imageSelector: backendImage
|
||
|
env:
|
||
|
FRONT_URL: "{{ .Values.workload.main.podSpec.containers.main.env.FRONT_URL }}"
|
||
|
# Changed port to 10248 to avoid conflict with frontend
|
||
|
HTTP_PORT: "10248"
|
||
|
JWT_SECRET_KEY:
|
||
|
secretKeyRef:
|
||
|
name: kitchenowl-secrets
|
||
|
key: JWT_SECRET_KEY
|
||
|
DB_DRIVER: "postgresql"
|
||
|
DB_HOST:
|
||
|
secretKeyRef:
|
||
|
name: cnpg-main-urls
|
||
|
key: host
|
||
|
DB_NAME: "{{ .Values.cnpg.main.database }}"
|
||
|
DB_USER: "{{ .Values.cnpg.main.user }}"
|
||
|
DB_PASSWORD:
|
||
|
secretKeyRef:
|
||
|
name: cnpg-main-user
|
||
|
key: password
|
||
|
probes:
|
||
|
liveness:
|
||
|
enabled: true
|
||
|
type: tcp
|
||
|
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
|
||
|
readiness:
|
||
|
enabled: true
|
||
|
type: tcp
|
||
|
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
|
||
|
startup:
|
||
|
enabled: true
|
||
|
type: tcp
|
||
|
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
|
||
|
|
||
|
# Enabled postgres
|
||
|
cnpg:
|
||
|
main:
|
||
|
enabled: true
|
||
|
user: kitchenowl
|
||
|
database: kitchenowl
|