fix postgres chart (#6179)

This commit is contained in:
Cornelius Keller
2018-06-18 09:46:32 -07:00
committed by k8s-ci-robot
parent 6eeef718f8
commit 12de98d102
3 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -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:
+6 -6
View File
@@ -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:
+6 -6
View File
@@ -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: {}