Skip to content

Commit

Permalink
Merge pull request #578 from abays/fix_telemetry_webhook_aodh
Browse files Browse the repository at this point in the history
Add missing Aodh memcachedInstance defaulting
  • Loading branch information
openshift-merge-bot[bot] authored Jan 10, 2025
2 parents c1e8bc2 + 32d06fb commit dd114b9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/v1beta1/telemetry_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ func (spec *TelemetrySpec) Default() {
if spec.Autoscaling.AutoscalingSpec.Aodh.ListenerImage == "" {
spec.Autoscaling.AutoscalingSpec.Aodh.ListenerImage = telemetryDefaults.AodhListenerContainerImageURL
}
if spec.Autoscaling.AutoscalingSpec.Aodh.MemcachedInstance == "" {
spec.Autoscaling.AutoscalingSpec.Aodh.MemcachedInstance = "memcached"
}
}

// Default - set defaults for this Telemetry spec core
Expand Down

0 comments on commit dd114b9

Please sign in to comment.