diff --git a/pkg/autoscaling/aodh_statefulset.go b/pkg/autoscaling/aodh_statefulset.go index 7e85fb4c..8e8a3b04 100644 --- a/pkg/autoscaling/aodh_statefulset.go +++ b/pkg/autoscaling/aodh_statefulset.go @@ -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, } diff --git a/pkg/ceilometer/statefulset.go b/pkg/ceilometer/statefulset.go index bf8cb88a..8c1e9302 100644 --- a/pkg/ceilometer/statefulset.go +++ b/pkg/ceilometer/statefulset.go @@ -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, }