apps/do-test: update config format to new chart
This commit is contained in:
parent
cb77b155f8
commit
394a7f8d9c
|
@ -11,8 +11,6 @@ data:
|
||||||
tag: unstable
|
tag: unstable
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
|
||||||
primary: true
|
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/tls-acme: "true"
|
kubernetes.io/tls-acme: "true"
|
||||||
hosts:
|
hosts:
|
||||||
|
@ -29,8 +27,6 @@ data:
|
||||||
tag: unstable
|
tag: unstable
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
|
||||||
primary: false
|
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/tls-acme: "true"
|
kubernetes.io/tls-acme: "true"
|
||||||
hosts:
|
hosts:
|
||||||
|
@ -42,47 +38,53 @@ data:
|
||||||
- secretName: vikunja-test-tls
|
- secretName: vikunja-test-tls
|
||||||
hosts:
|
hosts:
|
||||||
- "do-test.${domain}"
|
- "do-test.${domain}"
|
||||||
config: |-
|
configMaps:
|
||||||
auth:
|
config:
|
||||||
openid:
|
data:
|
||||||
# https://vikunja.io/docs/config-options/#openid
|
config.yml: |-
|
||||||
# Example: https://github.com/go-vikunja/api/blob/main/config.yml.sample#L289-L312
|
auth:
|
||||||
enabled: true
|
openid:
|
||||||
redirecturl: "https://do-test.${domain}/auth/openid/"
|
# https://vikunja.io/docs/config-options/#openid
|
||||||
providers:
|
# Example: https://github.com/go-vikunja/api/blob/main/config.yml.sample#L289-L312
|
||||||
- name: Stackspin
|
enabled: true
|
||||||
authurl: "https://sso.${domain}/"
|
redirecturl: "https://do-test.${domain}/auth/openid/"
|
||||||
clientid: "${client_id}"
|
providers:
|
||||||
clientsecret: "${client_secret}"
|
- name: Stackspin
|
||||||
service:
|
authurl: "https://sso.${domain}/"
|
||||||
frontendurl: "https://do-test.${domain}"
|
clientid: "${client_id}"
|
||||||
motd: "This is a test instance, do not use for production data as it can vanish without notice! Use Stackspin login, as usual."
|
clientsecret: "${client_secret}"
|
||||||
timezone: "CET"
|
service:
|
||||||
JWTSecret: "${jwt}"
|
frontendurl: "https://do-test.${domain}"
|
||||||
database:
|
motd: "This is a test instance, do not use for production data as it can vanish without notice! Use Stackspin login, as usual."
|
||||||
type: postgres
|
timezone: "CET"
|
||||||
host: vikunja-test-postgresql
|
JWTSecret: "${jwt}"
|
||||||
password: "${postgresql_password}"
|
database:
|
||||||
log:
|
type: postgres
|
||||||
path: "/app/vikunja"
|
host: vikunja-test-postgresql
|
||||||
http: stdout
|
password: "${postgresql_password}"
|
||||||
database: stderr
|
log:
|
||||||
databaselevel: debug
|
path: "/app/vikunja"
|
||||||
defaultsettings:
|
http: stdout
|
||||||
avatar_provider: gravatar
|
database: stderr
|
||||||
discoverable_by_name: true
|
databaselevel: debug
|
||||||
discoverable_by_email: true
|
defaultsettings:
|
||||||
week_start: 1
|
avatar_provider: gravatar
|
||||||
timezone: CET
|
discoverable_by_name: true
|
||||||
|
discoverable_by_email: true
|
||||||
|
week_start: 1
|
||||||
|
timezone: CET
|
||||||
|
# TODO default_project_id
|
||||||
#persistence:
|
#persistence:
|
||||||
# files:
|
# files:
|
||||||
# labels:
|
# labels:
|
||||||
# stackspin.net/backupSet: "vikunja"
|
# stackspin.net/backupSet: "vikunja"
|
||||||
postgresqlEnabled: true
|
|
||||||
postgresql:
|
postgresql:
|
||||||
postgresqlDatabase: vikunja
|
enabled: true
|
||||||
postgresqlUsername: vikunja
|
global:
|
||||||
postgresqlPassword: "${postgresql_password}"
|
postgresql:
|
||||||
|
database: vikunja
|
||||||
|
username: vikunja
|
||||||
|
password: "${postgresql_password}"
|
||||||
persistence:
|
persistence:
|
||||||
enabled: true
|
enabled: true
|
||||||
existingClaim: vikunja-postgres
|
existingClaim: vikunja-postgres
|
||||||
|
|
Loading…
Reference in New Issue