From 0e8e621d01a298ff4596842a1844b82eb4c03509 Mon Sep 17 00:00:00 2001 From: Janne Mareike Koschinski <janne@kuschku.de> Date: Sun, 26 Mar 2023 20:25:14 +0200 Subject: [PATCH] fix: typo in postgres chart. --- postgresql/Chart.yaml | 2 +- postgresql/templates/statefulset.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/postgresql/Chart.yaml b/postgresql/Chart.yaml index f23ab19..e560207 100644 --- a/postgresql/Chart.yaml +++ b/postgresql/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: postgresql description: Helm Chart for postgresql type: application -version: 1.0.1 +version: 1.0.2 appVersion: "14.7-alpine" diff --git a/postgresql/templates/statefulset.yaml b/postgresql/templates/statefulset.yaml index 4dca6e4..04e6d68 100644 --- a/postgresql/templates/statefulset.yaml +++ b/postgresql/templates/statefulset.yaml @@ -77,7 +77,7 @@ spec: resources: {{- toYaml .Values.resources | nindent 12 }} volumeMounts: - - mountPath: "/var/lib/postgresqlql/data" + - mountPath: "/var/lib/postgresql/data" name: data - mountPath: "/configs" name: config -- GitLab