Skip to content

Commit

Permalink
Bump down default readinessprobe delays
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael da Fonseca <[email protected]>
  • Loading branch information
rsafonseca committed Feb 11, 2025
1 parent 231f69f commit 05aa68a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/reports-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ helm install reports-server --namespace reports-server --create-namespace report
| podEnv | object | `{}` | Provide additional environment variables to the pods. Map with the same format as kubernetes deployment spec's env. |
| securityContext | object | See [values.yaml](values.yaml) | Container security context |
| livenessProbe | object | `{"failureThreshold":10,"httpGet":{"path":"/livez","port":"https","scheme":"HTTPS"},"initialDelaySeconds":20,"periodSeconds":10}` | Liveness probe |
| readinessProbe | object | `{"failureThreshold":10,"httpGet":{"path":"/readyz","port":"https","scheme":"HTTPS"},"initialDelaySeconds":30,"periodSeconds":10}` | Readiness probe |
| readinessProbe | object | `{"failureThreshold":10,"httpGet":{"path":"/readyz","port":"https","scheme":"HTTPS"},"initialDelaySeconds":1,"periodSeconds":5}` | Readiness probe |
| metrics.enabled | bool | `true` | Enable prometheus metrics |
| metrics.serviceMonitor.enabled | bool | `false` | Enable service monitor for scraping prometheus metrics |
| metrics.serviceMonitor.additionalLabels | object | `{}` | Service monitor additional labels |
Expand Down
4 changes: 2 additions & 2 deletions charts/reports-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ livenessProbe:

# -- Readiness probe
readinessProbe:
initialDelaySeconds: 30
initialDelaySeconds: 1
failureThreshold: 10
periodSeconds: 10
periodSeconds: 5
httpGet:
path: /readyz
port: https
Expand Down
4 changes: 2 additions & 2 deletions config/install-etcd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ spec:
path: /readyz
port: https
scheme: HTTPS
initialDelaySeconds: 30
periodSeconds: 10
initialDelaySeconds: 1
periodSeconds: 5
resources:
limits: null
requests: null
Expand Down
4 changes: 2 additions & 2 deletions config/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,8 @@ spec:
path: /readyz
port: https
scheme: HTTPS
initialDelaySeconds: 30
periodSeconds: 10
initialDelaySeconds: 1
periodSeconds: 5
resources:
limits: null
requests: null
Expand Down

0 comments on commit 05aa68a

Please sign in to comment.