Skip to content

Commit

Permalink
changed liveness and readiness probe default values
Browse files Browse the repository at this point in the history
  • Loading branch information
jdstone committed Oct 28, 2024
1 parent d0dd1d5 commit ae46536
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions charts/sql-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,16 @@ Create an [issue](https://github.com/jdstone/helm-charts/issues) and I'll do the
| `resources.limits` | object | CPU/memory resource limits | `{}` |
| `livenessProbe.enabled` | boolean | Enable/Disable the default http livenessProbe | `true` |
| `livenessProbe.port` | int | Default livenessProbe http port | `nil` |
| `livenessProbe.initialDelaySeconds` | int | Initial delay seconds for livenessProbe | `30` |
| `livenessProbe.initialDelaySeconds` | int | Initial delay seconds for livenessProbe | `5` |
| `livenessProbe.periodSeconds` | int | Period seconds for livenessProbe | `nil` |
| `livenessProbe.timeoutSeconds` | int | Timeout seconds for livenessProbe | `nil` |
| `livenessProbe.timeoutSeconds` | int | Timeout seconds for livenessProbe | `30` |
| `livenessProbe.successThreshold` | int | Success threshold for livenessProbe | `nil` |
| `livenessProbe.failureThreshold` | int | Failure threshold for livenessProbe | `nil` |
| `readinessProbe.enabled` | boolean | Enable/Disable the default http readinessProbe | `true` |
| `readinessProbe.port` | int | Default readinessProbe http port | `nil` |
| `readinessProbe.initialDelaySeconds` | int | Initial delay seconds for readinessProbe | `30` |
| `readinessProbe.initialDelaySeconds` | int | Initial delay seconds for readinessProbe | `5` |
| `readinessProbe.periodSeconds` | int | Period seconds for readinessProbe | `nil` |
| `readinessProbe.timeoutSeconds` | int | Timeout seconds for readinessProbe | `nil` |
| `readinessProbe.timeoutSeconds` | int | Timeout seconds for readinessProbe | `30` |
| `readinessProbe.successThreshold` | int | Success threshold for readinessProbe | `nil` |
| `readinessProbe.failureThreshold` | int | Failure threshold for readinessProbe | `nil` |
| `customLivenessProbe` | object | Custom livenessProbe that overrides the default probe | `{}` |
Expand Down
8 changes: 4 additions & 4 deletions charts/sql-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ resources:
##
livenessProbe:
enabled: true
initialDelaySeconds: 30
initialDelaySeconds: 5
periodSeconds:
timeoutSeconds:
timeoutSeconds: 30
successThreshold:
failureThreshold:

Expand All @@ -212,9 +212,9 @@ customLivenessProbe: {}
##
readinessProbe:
enabled: true
initialDelaySeconds: 30
initialDelaySeconds: 5
periodSeconds:
timeoutSeconds:
timeoutSeconds: 30
successThreshold:
failureThreshold:

Expand Down

0 comments on commit ae46536

Please sign in to comment.