43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/leantime
|
|
pullPolicy: IfNotPresent
|
|
tag: v2.2.1@sha256:e30e205a59c3780c5ca51a64303914cf0880a0bc8a70e8e14954aabbfeccff45
|
|
|
|
securityContext:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
env:
|
|
LEAN_DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
|
|
LEAN_DB_USER: "{{ .Values.mariadb.mariadbUsername }}"
|
|
LEAN_APP_URL: "{{ if .Values.ingress }}{{ if .Values.ingress.main.enabled }}https://{{ ( index .Values.ingress.main.hosts 0 ).host }}{{ end }}{{ end }}"
|
|
LEAN_DB_HOST:
|
|
secretKeyRef:
|
|
name: mariadbcreds
|
|
key: plainhost
|
|
LEAN_DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: mariadbcreds
|
|
key: mariadb-password
|
|
LEAN_SESSION_PASSWORD:
|
|
secretKeyRef:
|
|
name: leantime-secrets
|
|
key: LEAN_SESSION_PASSWORD
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10117
|
|
targetPort: 80
|
|
|
|
mariadb:
|
|
enabled: true
|
|
mariadbUsername: leantime
|
|
mariadbDatabase: leantime
|
|
existingSecret: "mariadbcreds"
|