Synchronize upstreamed folder to d5450bf43

This commit is contained in:
bitnami-bot
2019-01-25 10:37:04 +00:00
parent 272f070eb0
commit 48833a0bd6
28 changed files with 174 additions and 97 deletions

View File

@@ -142,7 +142,11 @@ spec:
command:
- sh
- -c
{{- if .Values.postgresqlDatabase }}
- exec pg_isready -U {{ .Values.postgresqlUsername | quote }} -d {{ .Values.postgresqlDatabase | quote }} -h localhost
{{- else }}
- exec pg_isready -U {{ .Values.postgresqlUsername | quote }} -h localhost
{{- end }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
@@ -155,7 +159,11 @@ spec:
command:
- sh
- -c
{{- if .Values.postgresqlDatabase }}
- exec pg_isready -U {{ .Values.postgresqlUsername | quote }} -d {{ .Values.postgresqlDatabase | quote }} -h localhost
{{- else }}
- exec pg_isready -U {{ .Values.postgresqlUsername | quote }} -h localhost
{{- end }}
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}