Skip to content

Commit

Permalink
Enable autonodezing by default (#3159)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrkotas authored Sep 11, 2023
1 parent 28d4870 commit f85866b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/api/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func DefaultOperatorFlags() OperatorFlags {
"aro.routefix.enabled": flagTrue,
"aro.storageaccounts.enabled": flagTrue,
"aro.workaround.enabled": flagTrue,
"aro.autosizednodes.enabled": flagFalse,
"aro.autosizednodes.enabled": flagTrue,
"rh.srep.muo.enabled": flagTrue,
"rh.srep.muo.managed": flagTrue,
"aro.guardrails.enabled": flagFalse,
Expand Down
4 changes: 2 additions & 2 deletions pkg/monitor/cluster/clusterflagsandbanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func TestEmitOperatorFlagsAndSupportBanner(t *testing.T) {
"aro.imageconfig.enabled": "false",
"aro.dnsmasq.enabled": "false",
"aro.genevalogging.enabled": "false",
"aro.autosizednodes.enabled": "true",
"aro.autosizednodes.enabled": "false",
},
expectBannerMetricsValue: 0,
expectBannerMetricsDims: nil,
Expand Down Expand Up @@ -169,7 +169,7 @@ func TestEmitOperatorFlagsAndSupportBanner(t *testing.T) {
"aro.imageconfig.enabled": "false",
"aro.dnsmasq.enabled": "false",
"aro.genevalogging.enabled": "false",
"aro.autosizednodes.enabled": "true",
"aro.autosizednodes.enabled": "false",
},
expectBannerMetricsValue: 1,
expectBannerMetricsDims: map[string]string{"msg": "contact support"},
Expand Down

0 comments on commit f85866b

Please sign in to comment.