Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/rabbitmq] Reduce readiness/liveness probes frequency #10377

Merged
merged 1 commit into from
Jan 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/rabbitmq/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rabbitmq
version: 4.0.2
version: 4.0.3
appVersion: 3.7.9
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
keywords:
Expand Down
4 changes: 2 additions & 2 deletions stable/rabbitmq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ The following table lists the configurable parameters of the RabbitMQ chart and
| `ingress.annotations` | ingress annotations as an array | [] |
| `livenessProbe.enabled` | would you like a livenessProbed to be enabled | `true` |
| `livenessProbe.initialDelaySeconds` | number of seconds | 120 |
| `livenessProbe.timeoutSeconds` | number of seconds | 5 |
| `livenessProbe.periodSeconds` | number of seconds | 5 |
| `livenessProbe.timeoutSeconds` | number of seconds | 20 |
| `livenessProbe.periodSeconds` | number of seconds | 30 |
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

doesn't it miss the default values for readiness probes?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. Check this new PR: #10380

| `livenessProbe.failureThreshold` | number of failures | 6 |
| `livenessProbe.successThreshold` | number of successes | 1 |
| `readinessProbe.enabled` | would you like a readinessProbe to be enabled | `true` |
Expand Down
8 changes: 4 additions & 4 deletions stable/rabbitmq/values-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,16 +196,16 @@ ingress:
livenessProbe:
enabled: true
initialDelaySeconds: 120
timeoutSeconds: 5
periodSeconds: 5
timeoutSeconds: 20
periodSeconds: 30
failureThreshold: 6
successThreshold: 1

readinessProbe:
enabled: true
initialDelaySeconds: 10
timeoutSeconds: 3
periodSeconds: 5
timeoutSeconds: 20
periodSeconds: 30
failureThreshold: 3
successThreshold: 1

Expand Down
8 changes: 4 additions & 4 deletions stable/rabbitmq/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,16 +193,16 @@ ingress:
livenessProbe:
enabled: true
initialDelaySeconds: 120
timeoutSeconds: 5
periodSeconds: 5
timeoutSeconds: 20
periodSeconds: 30
failureThreshold: 6
successThreshold: 1

readinessProbe:
enabled: true
initialDelaySeconds: 10
timeoutSeconds: 3
periodSeconds: 5
timeoutSeconds: 20
periodSeconds: 30
failureThreshold: 3
successThreshold: 1

Expand Down