mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
fix postgres chart (#6179)
This commit is contained in:
committed by
k8s-ci-robot
parent
6eeef718f8
commit
12de98d102
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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: {}
|
||||
|
||||
Reference in New Issue
Block a user