From a3a944482e78063c233b013b2ebe8c7902597ef4 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Fri, 20 Oct 2023 18:00:43 -0700 Subject: [PATCH] this needs to be a string --- values.yaml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/values.yaml b/values.yaml index 6e3abe9..e57e5c0 100644 --- a/values.yaml +++ b/values.yaml @@ -2,7 +2,7 @@ ## You can find it and the values you can provide and modify, at https://github.com/bjw-s/helm-charts/tree/a081de53024d8328d1ae9ff7e4f6bc500b0f3a29/charts/library/common ## Here's the link to the values.yaml file: https://github.com/bjw-s/helm-charts/blob/a081de53024d8328d1ae9ff7e4f6bc500b0f3a29/charts/library/common/values.yaml ## Refer there for more detail about the supported values. -## Any values that you find in the above `values.yaml` can be provided to this chart and are then rendered. +## Any values that you find in the above `values.yaml` can be provided to this chart and are then rendered. image: tag: 0.21.0 @@ -17,8 +17,8 @@ api: repository: vikunja/api pullPolicy: IfNotPresent persistence: - # This is your Vikunja data will live, you can either let - # the chart create a new PVC for you or provide an existing one. + # This is your Vikunja data will live, you can either let + # the chart create a new PVC for you or provide an existing one. data: enabled: true # existingClaim: # your-claim @@ -42,7 +42,7 @@ api: config: enabled: true data: - config.yml: + config.yml: | # Vikunja needs to know the frontend URL for password reset emails. # So you might need to provide its value, if you're not using an ingress. # service: @@ -51,11 +51,11 @@ api: database: # You should provide your own secret outside of this helm-chart and use `postgresql.global.postgresql.auth.existingSecret` to provide credentials to the postgresql instance (https://github.com/bitnami/charts/blob/5ff8ad5f3c754e3c2423d6abf46f522e8abe0410/bitnami/postgresql/values.yaml#L35-L39) # To utilize a secret in this configMap, you can do something like the following: https://github.com/bjw-s/helm-charts/blob/a081de53024d8328d1ae9ff7e4f6bc500b0f3a29/charts/library/common/values.yaml#L141-L145 - type: 'postgres' + type: postgres user: "{{ .Values.postgresql.global.postgresql.auth.username }}" password: "{{ .Values.postgresql.global.postgresql.auth.password }}" database: "{{ .Values.postgresql.global.postgresql.auth.database }}" - host: '{{ .Release.Name }}-postgresql' + host: "{{ .Release.Name }}-postgresql" typesense: # Typesense will only work if it is enabled below (typesense.enabled). url: '{{ printf "%s-typesense" .Release.Name }}' @@ -80,7 +80,7 @@ frontend: service: main: type: ClusterIP - + # https://github.com/bjw-s/helm-charts/blob/a081de53024d8328d1ae9ff7e4f6bc500b0f3a29/charts/library/common/values.yaml#L393-L436 ingress: main: @@ -97,13 +97,12 @@ frontend: # If you've used the "built-in" ingress in the api section, you don't need to specify VIKUNJA_API_URL as an environment variable here. # If you've used something else, you'll need to provide the URL to the API here. # env: - # VIKUNJA_API_URL: http://vikunja.local/api + # VIKUNJA_API_URL: http://vikunja.local/api ########################## # END VIKUNJA COMPONENTS # ########################## - # Optional Dependencies postgresql: enabled: true