Skip to content

Commit

Permalink
update probe configs
Browse files Browse the repository at this point in the history
  • Loading branch information
AnchorArray committed Feb 23, 2024
1 parent 42ba3da commit 561e0c8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions charts/langkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,19 +106,21 @@ helm-docs --dry-run
| ingress.enabled | bool | `false` | |
| ingress.hosts | list | `[]` | |
| ingress.tls | list | `[]` | |
| livenessProbe.failureThreshold | int | `3` | |
| livenessProbe.httpGet.path | string | `"/health"` | |
| livenessProbe.httpGet.port | int | `8000` | |
| livenessProbe.initialDelaySeconds | int | `15` | |
| livenessProbe.periodSeconds | int | `10` | |
| livenessProbe.initialDelaySeconds | int | `30` | |
| livenessProbe.periodSeconds | int | `30` | |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
| pod.annotations | object | `{}` | |
| pod.labels | object | `{}` | |
| pod.securityContext | object | `{}` | |
| readinessProbe.failureThreshold | int | `10` | |
| readinessProbe.httpGet.path | string | `"/health"` | |
| readinessProbe.httpGet.port | int | `8000` | |
| readinessProbe.initialDelaySeconds | int | `15` | |
| readinessProbe.periodSeconds | int | `10` | |
| readinessProbe.initialDelaySeconds | int | `30` | |
| readinessProbe.periodSeconds | int | `30` | |
| replicaCount | int | `2` | |
| resources.limits.cpu | string | `"4"` | |
| resources.limits.memory | string | `"3Gi"` | |
Expand Down
10 changes: 6 additions & 4 deletions charts/langkit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,16 @@ livenessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 15
periodSeconds: 10
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 30
readinessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 15
periodSeconds: 10
failureThreshold: 10
initialDelaySeconds: 30
periodSeconds: 30

nodeSelector: {}

Expand Down

0 comments on commit 561e0c8

Please sign in to comment.