2022-07-18 14:20:37 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: stackspin-vikunja-test-values
|
|
|
|
namespace: stackspout
|
|
|
|
data:
|
2022-10-13 21:52:10 +00:00
|
|
|
# https://github.com/truecharts/charts/blob/master/charts/stable/vikunja/values.yaml
|
2022-07-18 14:20:37 +00:00
|
|
|
values.yaml: |
|
2023-09-15 11:15:51 +00:00
|
|
|
frontend:
|
|
|
|
image:
|
|
|
|
tag: unstable
|
|
|
|
pullPolicy: Always
|
|
|
|
ingress:
|
2022-07-18 14:20:37 +00:00
|
|
|
enabled: true
|
2023-09-15 11:15:51 +00:00
|
|
|
primary: true
|
|
|
|
annotations:
|
|
|
|
kubernetes.io/tls-acme: "true"
|
|
|
|
hosts:
|
|
|
|
- host: "do-test.${domain}"
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: Prefix
|
|
|
|
tls:
|
|
|
|
- secretName: vikunja-test-tls
|
|
|
|
hosts:
|
|
|
|
- "do-test.${domain}"
|
|
|
|
api:
|
|
|
|
image:
|
|
|
|
tag: unstable
|
|
|
|
pullPolicy: Always
|
|
|
|
ingress:
|
|
|
|
enabled: false
|
2022-07-18 14:20:37 +00:00
|
|
|
primary: false
|
|
|
|
annotations:
|
|
|
|
kubernetes.io/tls-acme: "true"
|
|
|
|
hosts:
|
|
|
|
- host: "do-test.${domain}"
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: Prefix
|
|
|
|
tls:
|
|
|
|
- secretName: vikunja-test-tls
|
|
|
|
hosts:
|
|
|
|
- "do-test.${domain}"
|
2023-09-15 11:15:51 +00:00
|
|
|
config: |-
|
|
|
|
auth:
|
|
|
|
openid:
|
|
|
|
# https://vikunja.io/docs/config-options/#openid
|
|
|
|
# Example: https://github.com/go-vikunja/api/blob/main/config.yml.sample#L289-L312
|
|
|
|
enabled: true
|
|
|
|
redirecturl: "https://do-test.${domain}/auth/openid/"
|
|
|
|
providers:
|
|
|
|
- name: Stackspin
|
|
|
|
authurl: "https://sso.${domain}/"
|
|
|
|
clientid: "${client_id}"
|
|
|
|
clientsecret: "${client_secret}"
|
|
|
|
service:
|
|
|
|
frontendurl: "https://do-test.${domain}"
|
|
|
|
motd: "This is a test instance, do not use for production data as it can vanish without notice! Use Stackspin login, as usual."
|
|
|
|
timezone: "CET"
|
|
|
|
JWTSecret: "${jwt}"
|
|
|
|
database:
|
|
|
|
type: postgres
|
|
|
|
host: vikunja-test-postgresql
|
|
|
|
password: "${postgresql_password}"
|
|
|
|
log:
|
|
|
|
path: "/app/vikunja"
|
|
|
|
http: stdout
|
|
|
|
database: stderr
|
|
|
|
databaselevel: debug
|
2022-10-13 21:52:10 +00:00
|
|
|
#persistence:
|
|
|
|
# files:
|
|
|
|
# labels:
|
|
|
|
# stackspin.net/backupSet: "vikunja"
|
2023-09-15 11:15:51 +00:00
|
|
|
postgresqlEnabled: true
|
2022-07-18 14:20:37 +00:00
|
|
|
postgresql:
|
|
|
|
postgresqlDatabase: vikunja
|
|
|
|
postgresqlUsername: vikunja
|
|
|
|
postgresqlPassword: "${postgresql_password}"
|
2023-09-15 11:15:51 +00:00
|
|
|
persistence:
|
|
|
|
enabled: true
|
|
|
|
existingClaim: vikunja-postgres
|