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
No related branches found
No related tags found
No related merge requests found
Pipeline #2815 passed
......@@ -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"
......@@ -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 }}"
......@@ -5,4 +5,4 @@ metadata:
labels:
{{- include "asynqmon-helm.labels" . | nindent 4 }}
stringData:
redis-password: {{ .Values.redis.password }}
redis-password: "{{ .Values.redis.password }}"
......@@ -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"
......@@ -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 }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment