From fd011f8a13f316321db30d7ba8c5dc81ec07fa90 Mon Sep 17 00:00:00 2001
From: Janne Mareike Koschinski <janne@kuschku.de>
Date: Sat, 14 May 2022 02:19:36 +0200
Subject: [PATCH] fix: correct issues with config types

---
 asynqmon/Chart.yaml               | 2 +-
 asynqmon/templates/configmap.yaml | 4 ++--
 asynqmon/templates/secret.yaml    | 2 +-
 imghost/Chart.yaml                | 2 +-
 imghost/templates/secret.yaml     | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/asynqmon/Chart.yaml b/asynqmon/Chart.yaml
index c348f33..41aa126 100644
--- a/asynqmon/Chart.yaml
+++ b/asynqmon/Chart.yaml
@@ -2,5 +2,5 @@ apiVersion: v2
 name: asynqmon
 description: Helm Chart for asynqmon
 type: application
-version: 1.0.0
+version: 1.0.1
 appVersion: "v0.7.1"
diff --git a/asynqmon/templates/configmap.yaml b/asynqmon/templates/configmap.yaml
index c2b433a..25bce1e 100644
--- a/asynqmon/templates/configmap.yaml
+++ b/asynqmon/templates/configmap.yaml
@@ -5,5 +5,5 @@ metadata:
   labels:
     {{- include "asynqmon-helm.labels" . | nindent 4 }}
 data:
-  redis-address: {{ .Values.redis.address }}
-  redis-database: {{ .Values.redis.database }}
+  redis-address: "{{ .Values.redis.address }}"
+  redis-database: "{{ .Values.redis.database }}"
diff --git a/asynqmon/templates/secret.yaml b/asynqmon/templates/secret.yaml
index 6d23538..04e97b6 100644
--- a/asynqmon/templates/secret.yaml
+++ b/asynqmon/templates/secret.yaml
@@ -5,4 +5,4 @@ metadata:
   labels:
     {{- include "asynqmon-helm.labels" . | nindent 4 }}
 stringData:
-  redis-password: {{ .Values.redis.password }}
+  redis-password: "{{ .Values.redis.password }}"
diff --git a/imghost/Chart.yaml b/imghost/Chart.yaml
index e8efff2..126c2e5 100644
--- a/imghost/Chart.yaml
+++ b/imghost/Chart.yaml
@@ -2,5 +2,5 @@ apiVersion: v2
 name: imghost
 description: Helm Chart for imghost
 type: application
-version: 1.0.0
+version: 1.0.1
 appVersion: "b05ab1e2"
diff --git a/imghost/templates/secret.yaml b/imghost/templates/secret.yaml
index 6eefcc1..ad1bce9 100644
--- a/imghost/templates/secret.yaml
+++ b/imghost/templates/secret.yaml
@@ -6,6 +6,6 @@ metadata:
     {{- include "imghost-helm.labels" . | nindent 4 }}
 stringData:
   config: |-
-    sourceFolder: /cache
-    targetFolder: /data
+    sourceFolder: "/cache"
+    targetFolder: "/data"
     {{ .Values.config | toYaml | nindent 4 }}
-- 
GitLab