* chore(questions): replace port parts with templates * chore(questions): replace controller parts with templates * remove tons of whitespce * remove quotes from strings on templates * make complete controller an include * default to recreate * remove replica and strategies as it's covered from controllerStrtegies include * remove whitespace again * replace controllertype with include (deployment/daemonset/statefulset) * replace advanced port part except targetport * remove more quotes * add hidden toggle of enable the port * new includes * update build script * controller deploy/stateful/deamon template changes * replace controllerStrategies with replicas, replica#, strategy, recreate * move 2 templates into a subfolder * remove quotes * remove disabled portals from questions and defined them on values * remove enabled portal from the questions and add it on values * one more app * Portal cleanup * remove portal templates * add more includes * replace portal links * move some templates in folders * replace ingressRoot with template * more grouping * replace persistenceroot with template * replace serviceExpertRoot * replace serviceroot * fix a rogue one * vctRoot * securityContext cleanup * remove quotes from templates on string * replace vctRoot * replace advanedSecurityRoot * replace podsecurity root * Update .github/scripts/build-catalog.sh * Update values.yaml * remove dupe portal * update build-release script * fix paths * fix apps with imageSelector Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
70 lines
1.3 KiB
YAML
70 lines
1.3 KiB
YAML
image:
|
|
repository: tccr.io/truecharts/kimai
|
|
tag: v1.20@sha256:f13b70aa746b3d8a754bcf1f78dbdfde95b94f443ee17b9e3474ab0ebf6068e3
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 33
|
|
runAsGroup: 33
|
|
|
|
secretEnv:
|
|
ADMINMAIL: "admin@mysecretdomain.com"
|
|
ADMINPASS: "MvvTfjagiaqDprGNVA"
|
|
|
|
env:
|
|
DB_TYPE: "mysql"
|
|
DB_PORT: "3306"
|
|
DB_USER: "{{ .Values.mariadb.mariadbDatabase }}"
|
|
DB_BASE: "{{ .Values.mariadb.mariadbUsername }}"
|
|
APP_ENV: "prod"
|
|
TRUSTED_HOSTS: "{{ .Values.env.trust_hosts }},localhost"
|
|
# User Defined
|
|
trust_hosts: "127.0.0.1"
|
|
DB_PASS:
|
|
secretKeyRef:
|
|
name: mariadbcreds
|
|
key: mariadb-password
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: mariadbcreds
|
|
key: plainhost
|
|
APP_SECRET:
|
|
secretKeyRef:
|
|
name: kimai-secrets
|
|
key: APP_SECRET
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10198
|
|
targetPort: 8001
|
|
|
|
probes:
|
|
liveness:
|
|
path: "/en/login"
|
|
readiness:
|
|
path: "/en/login"
|
|
startup:
|
|
path: "/en/login"
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/opt/kimai/var/data"
|
|
plugins:
|
|
enabled: true
|
|
mountPath: "/opt/kimai/var/plugins"
|
|
|
|
mariadb:
|
|
enabled: true
|
|
mariadbUsername: kimai
|
|
mariadbDatabase: kimai
|
|
existingSecret: "mariadbcreds"
|
|
|
|
portal:
|
|
enabled: true
|