Skip to content

Commit

Permalink
liveness and readiness probes to 10s from 30s (#2885)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegoodier authored Dec 28, 2023
1 parent 1d646db commit 49bd32e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cost-analyzer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -370,14 +370,14 @@ kubecostFrontend:
# Define a readiness probe for the Kubecost frontend container.
readinessProbe:
enabled: true
initialDelaySeconds: 30
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 200

# Define a liveness probe for the Kubecost frontend container.
livenessProbe:
enabled: true
initialDelaySeconds: 30
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 200
ipv6:
Expand Down Expand Up @@ -540,14 +540,14 @@ kubecostModel:
# Define a readiness probe for the Kubecost cost-model container.
readinessProbe:
enabled: true
initialDelaySeconds: 30
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 200

# Define a liveness probe for the Kubecost cost-model container.
livenessProbe:
enabled: true
initialDelaySeconds: 30
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 200
extraArgs: []
Expand Down

0 comments on commit 49bd32e

Please sign in to comment.