From 12de98d102629a5ae69fab110c97119df8eada45 Mon Sep 17 00:00:00 2001 From: Cornelius Keller Date: Mon, 18 Jun 2018 18:46:32 +0200 Subject: [PATCH] fix postgres chart (#6179) --- stable/postgresql/Chart.yaml | 2 +- stable/postgresql/templates/deployment.yaml | 12 ++++++------ stable/postgresql/values.yaml | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/stable/postgresql/Chart.yaml b/stable/postgresql/Chart.yaml index 9df5bb257f..0db630a1c8 100644 --- a/stable/postgresql/Chart.yaml +++ b/stable/postgresql/Chart.yaml @@ -1,5 +1,5 @@ name: postgresql -version: 0.14.1 +version: 0.14.2 appVersion: 9.6.2 description: Object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance. keywords: diff --git a/stable/postgresql/templates/deployment.yaml b/stable/postgresql/templates/deployment.yaml index 85e872d890..10ba3cc124 100644 --- a/stable/postgresql/templates/deployment.yaml +++ b/stable/postgresql/templates/deployment.yaml @@ -83,18 +83,18 @@ spec: - sh - -c - exec pg_isready --host $POD_IP - initialDelaySeconds: {{ .Values.probes.liveness.initialDelay | quote }} - timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds | quote }} - failureThreshold: {{ .Values.probes.liveness.failureThreshold | quote }} + initialDelaySeconds: {{ .Values.probes.liveness.initialDelay }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} readinessProbe: exec: command: - sh - -c - exec pg_isready --host $POD_IP - initialDelaySeconds: {{ .Values.probes.readiness.initialDelay | quote }} - timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds | quote }} - periodSeconds: {{ .Values.probes.readiness.periodSeconds | quote }} + initialDelaySeconds: {{ .Values.probes.readiness.initialDelay }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} + periodSeconds: {{ .Values.probes.readiness.periodSeconds }} resources: {{ toYaml .Values.resources | indent 10 }} volumeMounts: diff --git a/stable/postgresql/values.yaml b/stable/postgresql/values.yaml index 5ec6caea92..1277bf805d 100644 --- a/stable/postgresql/values.yaml +++ b/stable/postgresql/values.yaml @@ -132,13 +132,13 @@ affinity: {} # Override default liveness & readiness probes probes: liveness: - initialDelay: "60" - timeoutSeconds: "5" - failureThreshold: "6" + initialDelay: 60 + timeoutSeconds: 5 + failureThreshold: 6 readiness: - initialDelay: "5" - timeoutSeconds: "3" - failureThreshold: "5" + initialDelay: 5 + timeoutSeconds: 3 + failureThreshold: 5 ## Annotations for the deployment and nodes. deploymentAnnotations: {} podAnnotations: {}