stackspout/apps/do/vikunja/vikunja-values-configmap.yaml

124 lines
3.8 KiB
YAML
Raw Normal View History

apiVersion: v1
kind: ConfigMap
metadata:
name: stackspin-vikunja-values
namespace: stackspout
data:
# https://kolaente.dev/vikunja/helm-chart/src/branch/main/values.yaml
values.yaml: |
2023-12-12 21:17:54 +00:00
frontend:
image:
2024-02-16 18:40:41 +00:00
tag: 0.22
2023-12-12 21:17:54 +00:00
ingress:
main:
enabled: true
annotations:
kubernetes.io/tls-acme: "true"
hosts:
- host: "${vikunja_domain}"
2023-12-12 21:17:54 +00:00
paths:
- path: /
tls:
- secretName: vikunja-tls
hosts:
- "${vikunja_domain}"
env:
VIKUNJA_API_URL: https://${vikunja_domain}/api/v1
2023-12-12 21:17:54 +00:00
api:
image:
2024-02-16 18:40:41 +00:00
tag: 0.22
persistence:
data:
existingClaim: vikunja-files
2023-12-12 21:17:54 +00:00
ingress:
main:
enabled: true
annotations:
kubernetes.io/tls-acme: "true"
hosts:
- host: "${vikunja_domain}"
2023-12-12 21:17:54 +00:00
paths:
2023-12-12 21:25:02 +00:00
- path: /api
2023-12-12 21:17:54 +00:00
tls:
- secretName: vikunja-tls
hosts:
- "${vikunja_domain}"
2023-12-12 21:17:54 +00:00
configMaps:
config:
data:
config.yml: |-
auth:
openid:
2024-04-30 10:49:31 +00:00
# https://vikunja.io/docs/openid-example-configurations/
# Example: https://kolaente.dev/vikunja/vikunja/src/branch/main/config.yml.sample#L313
2023-12-12 21:17:54 +00:00
enabled: true
redirecturl: "https://${vikunja_domain}/auth/openid/"
2023-12-12 21:17:54 +00:00
providers:
- name: Stackspin
2024-05-01 14:19:16 +00:00
authurl: "https://${hydra_domain}/"
2023-12-12 21:17:54 +00:00
clientid: "${client_id}"
clientsecret: "${client_secret}"
local:
enabled: false
mailer:
enabled: "${outgoing_mail_enabled}"
host: "${outgoing_mail_smtp_host}"
port: "${outgoing_mail_smtp_port}"
username: "${outgoing_mail_smtp_user}"
password: "${outgoing_mail_smtp_password}"
fromemail: "${outgoing_mail_from_address}"
forcessl: true
service:
2024-03-12 08:05:41 +00:00
#rootpath: "/app/vikunja"
frontendurl: "https://${vikunja_domain}"
2023-12-12 21:17:54 +00:00
timezone: "CET"
JWTSecret: "${jwt}"
database:
type: postgres
host: vikunja-postgresql
password: "${postgresql_password}"
2024-03-11 17:21:54 +00:00
# https://vikunja.io/docs/config-options/#log
2023-12-12 21:17:54 +00:00
log:
2024-03-11 17:21:54 +00:00
standard: stderr
level: debug
database: file
2024-03-12 08:05:41 +00:00
databaselevel: debug
2023-12-12 21:17:54 +00:00
http: file
2024-03-11 17:21:54 +00:00
echo: file
events: file
eventslevel: debug
mail: file
maillevel: debug
2023-12-12 21:17:54 +00:00
defaultsettings:
avatar_provider: gravatar
discoverable_by_name: true
discoverable_by_email: true
week_start: 1
timezone: CET
# TODO default_project_id
global:
labels:
stackspin.net/backupSet: "vikunja"
podLabels:
stackspin.net/backupSet: "vikunja"
podAnnotations:
backup.velero.io/backup-volumes: "data"
2022-07-11 21:16:55 +00:00
postgresql:
enabled: true
commonLabels:
stackspin.net/backupSet: "vikunja"
2024-02-20 11:48:17 +00:00
global:
postgresql:
auth:
database: vikunja
username: vikunja
password: "${postgresql_password}"
postgresPassword: "${postgresql_admin_password}"
primary:
2024-02-09 08:09:32 +00:00
persistence:
existingClaim: vikunja-postgres
podAnnotations:
backup.velero.io/backup-volumes: "data"
2023-12-12 21:17:54 +00:00
typesense:
enabled: false