Files
truecharts/charts/stable/vikunja/values.yaml
T
ac9cc7f736 chore(questions): replace questions parts with templates (#3402)
* 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>
2022-08-08 23:25:02 +02:00

143 lines
3.8 KiB
YAML

image:
repository: tccr.io/truecharts/vikunja-api
tag: v0.18.1@sha256:fb299dc46b8229fbdc0d00187286f8e0fcc8afa2d9f182b71281cbb5c4832ff8
pullPolicy: IfNotPresent
frontendImage:
repository: tccr.io/truecharts/vikunja-frontend
tag: v0.18.2@sha256:29a442c3ceca971f9f797adbefea33d898cb308abd418534d708abc4b3b2929e
pullPolicy: IfNotPresent
nginxImage:
repository: tccr.io/truecharts/nginx
tag: v1.23.1@sha256:16eac28256bb91454ebfe1fc0ba773780f0f450acc82c80c71e73e3c8b44875a
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
configmap:
config:
enabled: true
data:
nginx-config: |-
server {
listen 8080;
location / {
proxy_pass http://localhost:80;
}
location ~* ^/(api|dav|\.well-known)/ {
proxy_pass http://localhost:3456;
client_max_body_size {{ .Values.env.VIKUNJA_FILES_MAXSIZE | upper | trimSuffix "B" }};
}
}
env:
VIKUNJA_REDIS_ENABLED: 1
VIKUNJA_CACHE_ENABLED: 1
VIKUNJA_CACHE_TYPE: "redis"
VIKUNJA_DATABASE_TYPE: "postgres"
VIKUNJA_DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}"
VIKUNJA_DATABASE_DATABASE: "{{ .Values.postgresql.postgresDatabase }}"
VIKUNJA_SERVICE_TIMEZONE: "{{ .Values.TZ }}"
# User Defined
VIKUNJA_SERVICE_FRONTENDURL: "http://localhost:8080"
VIKUNJA_SERVICE_JWTTTL: 259200
VIKUNJA_SERVICE_JWTTTLLONG: 2592000
VIKUNJA_SERVICE_MAXITEMSPERPAGE: 50
VIKUNJA_FILES_MAXSIZE: "20MB"
VIKUNJA_SERVICE_ENABLECALDAV: true
VIKUNJA_SERVICE_ENABLELINKSHARING: true
VIKUNJA_SERVICE_ENABLEREGISTRATION: true
VIKUNJA_SERVICE_ENABLETASKATTACHMENTS: true
VIKUNJA_SERVICE_ENABLETASKCOMMENTS: true
VIKUNJA_SERVICE_ENABLETOTP: true
VIKUNJA_SERVICE_ENABLEEMAILREMINDERS: true
VIKUNJA_SERVICE_ENABLEUSERDELETION: true
VIKUNJA_BACKGROUNDS_ENABLED: true
VIKUNJA_RATELIMIT_ENABLED: false
VIKUNJA_RATELIMIT_PERIOD: 60
VIKUNJA_RATELIMIT_LIMIT: 100
# VIKUNJA_MAILER_HOST: ""
# VIKUNJA_MAILER_PORT: 587
# VIKUNJA_MAILER_USERNAME: ""
# VIKUNJA_MAILER_PASSWORD: ""
# VIKUNJA_MAILER_FROMEMAIL: ""
# VIKUNJA_MAILER_SKIPTLSVERIFY: false
# VIKUNJA_MAILER_FORCESSL: false
# VIKUNJA_MAILER_QUEUELENGTH: 100
# VIKUNJA_MAILER_QUEUETIMEOUT: 30
VIKUNJA_DATABASE_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
VIKUNJA_DATABASE_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
VIKUNJA_REDIS_HOST:
secretKeyRef:
name: rediscreds
key: plainporthost
VIKUNJA_REDIS_PASSWORD:
secretKeyRef:
name: rediscreds
key: redis-password
VIKUNJA_SERVICE_JWT_SECRET:
secretKeyRef:
name: vikunja-secrets
key: VIKUNJA_SERVICE_JWT_SECRET
service:
main:
ports:
main:
port: 10220
targetPort: 8080
additionalContainers:
frontend:
name: frontend
image: "{{ .Values.frontendImage.repository }}:{{ .Values.frontendImage.tag }}"
proxy:
name: proxy
image: "{{ .Values.nginxImage.repository }}:{{ .Values.nginxImage.tag }}"
ports:
- containerPort: 8080
name: main
volumeMounts:
- name: vikunja-config
mountPath: "/etc/nginx/conf.d/default.conf"
subPath: nginx-config
readOnly: true
persistence:
files:
enabled: true
mountPath: "/app/vikunja/files"
vikunja-config:
enabled: "true"
mountPath: "/etc/nginx/conf.d/default.conf"
subPath: "nginx-config"
type: "custom"
volumeSpec:
configMap:
name: '{{ printf "%v-config" (include "tc.common.names.fullname" .) }}'
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: vikunja
postgresqlDatabase: vikunja
redis:
enabled: true
existingSecret: "rediscreds"
portal:
enabled: true