52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
image:
|
|
repository: kanboard/kanboard
|
|
tag: v1.2.36@sha256:4d33417152eef8924cd8c8bf336fdcd6c45c449e03f10eb6c61244ecc7d2ed86
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10015
|
|
targetPort: 80
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/var/www/app/data"
|
|
ssl:
|
|
enabled: true
|
|
mountPath: "/etc/nginx/ssl"
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: kanboard
|
|
database: kanboard
|
|
portal:
|
|
open:
|
|
enabled: true
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
MAIL_CONFIGURATION: false
|
|
LOG_DRIVER: stdout
|
|
DB_DRIVER: "postgres"
|
|
DB_NAME: "{{ .Values.cnpg.main.database }}"
|
|
DB_USERNAME: "{{ .Values.cnpg.main.user }}"
|
|
DB_PORT: "5432"
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
DB_HOSTNAME:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|