Synchronize upstreamed folder to cec86f65c

This commit is contained in:
bitnami-bot
2019-02-15 12:36:28 +00:00
parent 5c1b0b48fe
commit 7863c77e06
7 changed files with 18 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
name: postgresql
version: 3.11.1
version: 3.11.2
appVersion: 10.7.0
description: Chart for PostgreSQL, an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance.
keywords:

View File

@@ -47,6 +47,10 @@ spec:
{{- if .Values.terminationGracePeriodSeconds }}
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
{{- end }}
{{- if .Values.securityContext.enabled }}
securityContext:
fsGroup: {{ .Values.securityContext.fsGroup }}
{{- end }}
{{- if and .Values.volumePermissions.enabled .Values.persistence.enabled }}
initContainers:
- name: init-chmod-data
@@ -76,7 +80,6 @@ spec:
{{ toYaml .Values.resources | indent 10 }}
{{- if .Values.securityContext.enabled }}
securityContext:
fsGroup: {{ .Values.securityContext.fsGroup }}
runAsUser: {{ .Values.securityContext.runAsUser }}
{{- end }}
env:

View File

@@ -51,6 +51,10 @@ spec:
{{- if .Values.terminationGracePeriodSeconds }}
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
{{- end }}
{{- if .Values.securityContext.enabled }}
securityContext:
fsGroup: {{ .Values.securityContext.fsGroup }}
{{- end }}
{{- if and .Values.volumePermissions.enabled .Values.persistence.enabled }}
initContainers:
- name: init-chmod-data
@@ -80,7 +84,6 @@ spec:
{{ toYaml .Values.resources | indent 10 }}
{{- if .Values.securityContext.enabled }}
securityContext:
fsGroup: {{ .Values.securityContext.fsGroup }}
runAsUser: {{ .Values.securityContext.runAsUser }}
{{- end }}
env:

View File

@@ -1,5 +1,5 @@
name: redis
version: 6.0.1
version: 6.1.0
appVersion: 4.0.12
description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
keywords:

View File

@@ -102,7 +102,7 @@ readinessProbe:
command:
- sh
- -c
- /health/ping_local_and_master.sh
- /health/ping_local_and_master.sh {{ $readinessProbe.timeoutSeconds | default .Values.master.readinessProbe.timeoutSeconds }}
{{- end }}
{{- end -}}
{{- end -}}
@@ -124,7 +124,7 @@ livenessProbe:
command:
- sh
- -c
- /health/ping_local_and_master.sh
- /health/ping_local_and_master.sh {{ $livenessProbe.timeoutSeconds | default .Values.master.livenessProbe.timeoutSeconds }}
{{- end }}
{{- end -}}
{{- end -}}

View File

@@ -14,6 +14,7 @@ data:
export REDIS_PASSWORD=$password_aux
{{- end }}
response=$(
timeout -s 9 $1 \
redis-cli \
{{- if .Values.usePassword }}
-a $REDIS_PASSWORD \
@@ -32,6 +33,7 @@ data:
export REDIS_MASTER_PASSWORD=$password_aux
{{- end }}
response=$(
timeout -s 9 $1 \
redis-cli \
{{- if .Values.usePassword }}
-a $REDIS_MASTER_PASSWORD \
@@ -47,6 +49,6 @@ data:
ping_local_and_master.sh: |-
script_dir="$(dirname "$0")"
exit_status=0
"$script_dir/ping_local.sh" || exit_status=$?
"$script_dir/ping_master.sh" || exit_status=$?
"$script_dir/ping_local.sh" $1 || exit_status=$?
"$script_dir/ping_master.sh" $1 || exit_status=$?
exit $exit_status

View File

@@ -121,7 +121,7 @@ spec:
command:
- sh
- -c
- /health/ping_local.sh
- /health/ping_local.sh {{ .Values.master.livenessProbe.timeoutSeconds }}
{{- end }}
{{- if .Values.master.readinessProbe.enabled}}
readinessProbe:
@@ -134,7 +134,7 @@ spec:
command:
- sh
- -c
- /health/ping_local.sh
- /health/ping_local.sh {{ .Values.master.livenessProbe.timeoutSeconds }}
{{- end }}
resources:
{{ toYaml .Values.master.resources | indent 10 }}