Skip to content

Commit

Permalink
rabbitmq readiness probe fails in some cases. (helm#22720)
Browse files Browse the repository at this point in the history
* update rabbitm-ha chart version from 1.46.1 to 1.46.2

Signed-off-by: yj.zeng <yj.zeng@allsenseww.com>

* rabbitmq readiness probe fails in some cases.

Signed-off-by: yj.zeng <yj.zeng@allsenseww.com>
  • Loading branch information
zengyongjie authored Jun 10, 2020
1 parent 08630cb commit 146c37a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stable/rabbitmq-ha/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: rabbitmq-ha
apiVersion: v1
appVersion: 3.8.4
version: 1.46.1
version: 1.46.2
description: Highly available RabbitMQ cluster, the open source message broker
software that implements the Advanced Message Queuing Protocol (AMQP).
keywords:
Expand Down
4 changes: 2 additions & 2 deletions stable/rabbitmq-ha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ livenessProbe:
command:
- /bin/sh
- -c
- 'timeout 5 wget -O - -q --header "Authorization: Basic `echo -n \"$RABBIT_MANAGEMENT_USER:$RABBIT_MANAGEMENT_PASSWORD\" | base64`" http://localhost:15672/api/healthchecks/node | grep -qF "{\"status\":\"ok\"}"'
- 'timeout 5 wget -O - -q --header "Authorization: Basic `echo -n \"$RABBIT_MANAGEMENT_USER:$RABBIT_MANAGEMENT_PASSWORD\" | base64`" http://127.0.0.1:15672/api/healthchecks/node | grep -qF "{\"status\":\"ok\"}"'

readinessProbe:
initialDelaySeconds: 20
Expand All @@ -516,7 +516,7 @@ readinessProbe:
command:
- /bin/sh
- -c
- 'timeout 3 wget -O - -q --header "Authorization: Basic `echo -n \"$RABBIT_MANAGEMENT_USER:$RABBIT_MANAGEMENT_PASSWORD\" | base64`" http://localhost:15672/api/healthchecks/node | grep -qF "{\"status\":\"ok\"}"'
- 'timeout 3 wget -O - -q --header "Authorization: Basic `echo -n \"$RABBIT_MANAGEMENT_USER:$RABBIT_MANAGEMENT_PASSWORD\" | base64`" http://127.0.0.1:15672/api/healthchecks/node | grep -qF "{\"status\":\"ok\"}"'

# Specifies an existing secret to be used for RMQ password, management user password and Erlang Cookie
existingSecret: ""
Expand Down

0 comments on commit 146c37a

Please sign in to comment.