Skip to content
Snippets Groups Projects
Verified Commit fd011f8a authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct issues with config types

parent 52c85cba
Branches
No related tags found
No related merge requests found
Pipeline #2815 passed
...@@ -2,5 +2,5 @@ apiVersion: v2 ...@@ -2,5 +2,5 @@ apiVersion: v2
name: asynqmon name: asynqmon
description: Helm Chart for asynqmon description: Helm Chart for asynqmon
type: application type: application
version: 1.0.0 version: 1.0.1
appVersion: "v0.7.1" appVersion: "v0.7.1"
...@@ -5,5 +5,5 @@ metadata: ...@@ -5,5 +5,5 @@ metadata:
labels: labels:
{{- include "asynqmon-helm.labels" . | nindent 4 }} {{- include "asynqmon-helm.labels" . | nindent 4 }}
data: data:
redis-address: {{ .Values.redis.address }} redis-address: "{{ .Values.redis.address }}"
redis-database: {{ .Values.redis.database }} redis-database: "{{ .Values.redis.database }}"
...@@ -5,4 +5,4 @@ metadata: ...@@ -5,4 +5,4 @@ metadata:
labels: labels:
{{- include "asynqmon-helm.labels" . | nindent 4 }} {{- include "asynqmon-helm.labels" . | nindent 4 }}
stringData: stringData:
redis-password: {{ .Values.redis.password }} redis-password: "{{ .Values.redis.password }}"
...@@ -2,5 +2,5 @@ apiVersion: v2 ...@@ -2,5 +2,5 @@ apiVersion: v2
name: imghost name: imghost
description: Helm Chart for imghost description: Helm Chart for imghost
type: application type: application
version: 1.0.0 version: 1.0.1
appVersion: "b05ab1e2" appVersion: "b05ab1e2"
...@@ -6,6 +6,6 @@ metadata: ...@@ -6,6 +6,6 @@ metadata:
{{- include "imghost-helm.labels" . | nindent 4 }} {{- include "imghost-helm.labels" . | nindent 4 }}
stringData: stringData:
config: |- config: |-
sourceFolder: /cache sourceFolder: "/cache"
targetFolder: /data targetFolder: "/data"
{{ .Values.config | toYaml | nindent 4 }} {{ .Values.config | toYaml | nindent 4 }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment