do: remove malformed templating expressions

This commit is contained in:
xeruf 2022-07-13 11:07:39 +01:00
parent eab3f30f54
commit 1f2023f0b0
1 changed files with 13 additions and 11 deletions

View File

@ -1,12 +1,17 @@
apiVersion: v1 apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:
name: stackspin-{{ .Release.Name }}-values name: stackspin-vikunja-values
namespace: stackspout namespace: stackspout
data: data:
# Defaults: https://github.com/k8s-at-home/charts/blob/master/charts/stable/vikunja/values.yaml # Defaults: https://github.com/k8s-at-home/charts/blob/master/charts/stable/vikunja/values.yaml
# Inherits: https://github.com/k8s-at-home/library-charts/blob/main/charts/stable/common/values.yaml # Inherits: https://github.com/k8s-at-home/library-charts/blob/main/charts/stable/common/values.yaml
values.yaml: | values.yaml: |
additionalContainers:
api:
image: vikunja/api:0.18.1
frontend:
image: vikunja/frontend:0.18.2
vikunja: vikunja:
config: |- config: |-
auth: auth:
@ -28,7 +33,7 @@ data:
timezone: "CET" timezone: "CET"
database: database:
type: postgres type: postgres
host: {{ .Release.Name }}-postgresql host: vikunja-postgresql
password: "${postgresql_password}" password: "${postgresql_password}"
ingress: ingress:
main: main:
@ -42,19 +47,16 @@ data:
- path: / - path: /
pathType: Prefix pathType: Prefix
tls: tls:
- secretName: {{ .Release.Name }}-tls - secretName: vikunja-tls
hosts: hosts:
- "do.${domain}" - "do.${domain}"
additionalContainers: caddy:
api: noTls: true
image: vikunja/api:0.18.1
frontend:
image: vikunja/frontend:0.18.2
postgresql: postgresql:
enabled: true enabled: true
postgresqlDatabase: {{ .Release.Name }} postgresqlDatabase: vikunja
postgresqlUsername: {{ .Release.Name }} postgresqlUsername: vikunja
postgresqlPassword: "${postgresql_password}" postgresqlPassword: "${postgresql_password}"
persistence: persistence:
enabled: true enabled: true
existingClaim: {{ .Release.Name }}-postgres existingClaim: vikunja-postgres