From 51a2027f03fc455078c97603672197a4b0476789 Mon Sep 17 00:00:00 2001
From: Janne Mareike Koschinski <janne@kuschku.de>
Date: Sat, 14 May 2022 02:25:52 +0200
Subject: [PATCH] fix: correct typos in charts

---
 asynqmon/Chart.yaml                        | 2 +-
 asynqmon/templates/deployment.yaml         | 6 +++---
 imghost/templates/deployment-frontend.yaml | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/asynqmon/Chart.yaml b/asynqmon/Chart.yaml
index 41aa126..2cf62c5 100644
--- a/asynqmon/Chart.yaml
+++ b/asynqmon/Chart.yaml
@@ -3,4 +3,4 @@ name: asynqmon
 description: Helm Chart for asynqmon
 type: application
 version: 1.0.1
-appVersion: "v0.7.1"
+appVersion: "0.7.1"
diff --git a/asynqmon/templates/deployment.yaml b/asynqmon/templates/deployment.yaml
index 9a94784..173f15e 100644
--- a/asynqmon/templates/deployment.yaml
+++ b/asynqmon/templates/deployment.yaml
@@ -47,9 +47,9 @@ spec:
                   name: {{ include "asynqmon-helm.fullname" . }}
                   key: redis-database
           args:
-            - "--redis-addr=${REDIS_ADDRESS}"
-            - "--redis-password=${REDIS_PASSWORD}"
-            - "--redis-db=${REDIS_DATABASE}"
+            - "--redis-addr=$(REDIS_ADDRESS)"
+            - "--redis-password=$(REDIS_PASSWORD)"
+            - "--redis-db=$(REDIS_DATABASE)"
             {{ if .Values.metrics.enabled }}
             - "--enable-metrics-exporter"
             {{ end }}
diff --git a/imghost/templates/deployment-frontend.yaml b/imghost/templates/deployment-frontend.yaml
index 2ae1b66..93f2b4d 100644
--- a/imghost/templates/deployment-frontend.yaml
+++ b/imghost/templates/deployment-frontend.yaml
@@ -49,15 +49,15 @@ spec:
           startupProbe:
             httpGet:
               path: /healthz
-              port: metrics
+              port: http
           livenessProbe:
             httpGet:
               path: /healthz
-              port: metrics
+              port: http
           readinessProbe:
             httpGet:
               path: /healthz
-              port: metrics
+              port: http
           resources:
             {{- toYaml .Values.resources | nindent 12 }}
           volumeMounts:
-- 
GitLab