From 45e9227f559d469cbd270c17cc7596533d8675ae Mon Sep 17 00:00:00 2001 From: Martin Kucin <52672224+Mart-Kuc@users.noreply.github.com> Date: Wed, 30 Oct 2024 11:11:22 +0100 Subject: [PATCH] fix(postgres-operator/deployment): Set 'nindent' to 8 for 'extraEnvs' (#2783) Co-authored-by: martin.kucin <martin.kucin@yunextraffic.com> --- charts/postgres-operator/Chart.yaml | 2 +- charts/postgres-operator/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/postgres-operator/Chart.yaml b/charts/postgres-operator/Chart.yaml index ae4723b0..89b6dd15 100644 --- a/charts/postgres-operator/Chart.yaml +++ b/charts/postgres-operator/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: postgres-operator -version: 1.13.0 +version: 1.14.0 appVersion: 1.13.0 home: https://github.com/zalando/postgres-operator description: Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes diff --git a/charts/postgres-operator/templates/deployment.yaml b/charts/postgres-operator/templates/deployment.yaml index ddc3f6a0..abd66cfc 100644 --- a/charts/postgres-operator/templates/deployment.yaml +++ b/charts/postgres-operator/templates/deployment.yaml @@ -54,7 +54,7 @@ spec: value: {{ template "postgres-operator.controllerID" . }} {{- end }} {{- if .Values.extraEnvs }} - {{- .Values.extraEnvs | toYaml | nindent 12 }} + {{- .Values.extraEnvs | toYaml | nindent 8 }} {{- end }} resources: {{ toYaml .Values.resources | indent 10 }} -- GitLab