44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/leantime
|
|
pullPolicy: IfNotPresent
|
|
tag: v2.1.9@sha256:ed8060590aa6241d4a9b574b0e9c577e19ea36f7ebf5ff2c1d8f450c50a03ae3
|
|
|
|
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"
|