mirror of
https://github.com/bitnami/charts.git
synced 2026-03-07 07:57:13 +08:00
[bitnami/redis] Fix 9279 (#9355)
Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
This commit is contained in:
@@ -24,4 +24,4 @@ maintainers:
|
||||
name: redis
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-redis
|
||||
version: 16.5.1
|
||||
version: 16.5.2
|
||||
|
||||
@@ -33,7 +33,7 @@ data:
|
||||
{{- end }}
|
||||
ping
|
||||
)
|
||||
if [[ "$?" -eq "124" ]]; then
|
||||
if [ "$?" -eq "124" ]; then
|
||||
echo "Timed out"
|
||||
exit 1
|
||||
fi
|
||||
@@ -63,7 +63,7 @@ data:
|
||||
{{- end }}
|
||||
ping
|
||||
)
|
||||
if [[ "$?" -eq "124" ]]; then
|
||||
if [ "$?" -eq "124" ]; then
|
||||
echo "Timed out"
|
||||
exit 1
|
||||
fi
|
||||
@@ -97,7 +97,7 @@ data:
|
||||
{{- end }}
|
||||
ping
|
||||
)
|
||||
if [[ "$?" -eq "124" ]]; then
|
||||
if [ "$?" -eq "124" ]; then
|
||||
echo "Timed out"
|
||||
exit 1
|
||||
fi
|
||||
@@ -141,7 +141,7 @@ data:
|
||||
{{- end }}
|
||||
ping
|
||||
)
|
||||
if [[ "$?" -eq "124" ]]; then
|
||||
if [ "$?" -eq "124" ]; then
|
||||
echo "Timed out"
|
||||
exit 1
|
||||
fi
|
||||
@@ -169,7 +169,7 @@ data:
|
||||
{{- end }}
|
||||
ping
|
||||
)
|
||||
if [[ "$?" -eq "124" ]]; then
|
||||
if [ "$?" -eq "124" ]; then
|
||||
echo "Timed out"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user