Skip to content

Commit

Permalink
Merge pull request #375 from elfiesmelfie/efoley-update-probes
Browse files Browse the repository at this point in the history
Update probe timeouts
  • Loading branch information
openshift-merge-bot[bot] authored Apr 30, 2024
2 parents 50188dd + d27b3ed commit 732507d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions pkg/autoscaling/aodh_statefulset.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ func AodhStatefulSet(

livenessProbe := &corev1.Probe{
// TODO might need tuning
TimeoutSeconds: 5,
PeriodSeconds: 3,
InitialDelaySeconds: 3,
TimeoutSeconds: 30,
PeriodSeconds: 30,
InitialDelaySeconds: 5,
}
readinessProbe := &corev1.Probe{
// TODO might need tuning
TimeoutSeconds: 5,
PeriodSeconds: 5,
TimeoutSeconds: 30,
PeriodSeconds: 30,
InitialDelaySeconds: 5,
}

Expand Down
10 changes: 5 additions & 5 deletions pkg/ceilometer/statefulset.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ func StatefulSet(
// TO-DO Probes
livenessProbe := &corev1.Probe{
// TODO might need tuning
TimeoutSeconds: 5,
PeriodSeconds: 3,
InitialDelaySeconds: 3,
TimeoutSeconds: 30,
PeriodSeconds: 30,
InitialDelaySeconds: 5,
}
readinessProbe := &corev1.Probe{
// TODO might need tuning
TimeoutSeconds: 5,
PeriodSeconds: 5,
TimeoutSeconds: 30,
PeriodSeconds: 30,
InitialDelaySeconds: 5,
}

Expand Down

0 comments on commit 732507d

Please sign in to comment.