Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump down default readinessprobe delays #253

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 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
Loading