Skip to content

Commit

Permalink
chore: add latancy check to default values
Browse files Browse the repository at this point in the history
  • Loading branch information
y-eight committed Dec 4, 2023
1 parent ec82c66 commit 72e2e5e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ A Helm chart to install Sparrow
| podSecurityContext.supplementalGroups[0] | int | `1000` | |
| replicaCount | int | `1` | |
| resources | object | `{}` | |
| runtimeConfig | object | `{"health":{"enabled":true,"healthEndpoint":false,"targets":["https://www.example.com/","https://www.google.com/"]}}` | runtime configuration of the Sparrow see: https://github.com/caas-team/sparrow#runtime |
| runtimeConfig | object | `{"health":{"enabled":true,"healthEndpoint":false,"targets":["https://www.example.com/","https://www.google.com/"]},"latency":{"enabled":true,"interval":1,"retry":{"count":3,"delay":1},"targets":["https://example.com/","https://google.com/"],"timeout":3}}` | runtime configuration of the Sparrow see: https://github.com/caas-team/sparrow#runtime |
| securityContext.allowPrivilegeEscalation | bool | `false` | |
| securityContext.capabilities.drop[0] | string | `"ALL"` | |
| securityContext.privileged | bool | `false` | |
Expand Down
10 changes: 10 additions & 0 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,13 @@ runtimeConfig:
- "https://www.example.com/"
- "https://www.google.com/"
healthEndpoint: false
latency:
enabled: true
interval: 1
timeout: 3
retry:
count: 3
delay: 1
targets:
- https://example.com/
- https://google.com/

0 comments on commit 72e2e5e

Please sign in to comment.