Skip to content

Commit

Permalink
Merge pull request #4994 from serngawy/autorepair
Browse files Browse the repository at this point in the history
🐛 ROSA: Fix autoRepair default value
  • Loading branch information
k8s-ci-robot committed May 31, 2024
2 parents b99443a + 37fb2e8 commit ac80251
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ spec:
underlying EC2 instances associated with this machine pool.
type: object
autoRepair:
default: false
default: true
description: |-
AutoRepair specifies whether health checks should be enabled for machines
in the NodePool. The default is false.
in the NodePool. The default is true.
type: boolean
autoscaling:
description: |-
Expand Down
4 changes: 2 additions & 2 deletions exp/api/v1beta2/rosamachinepool_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ type RosaMachinePoolSpec struct {
AdditionalTags infrav1.Tags `json:"additionalTags,omitempty"`

// AutoRepair specifies whether health checks should be enabled for machines
// in the NodePool. The default is false.
// +kubebuilder:default=false
// in the NodePool. The default is true.
// +kubebuilder:default=true
// +optional
AutoRepair bool `json:"autoRepair,omitempty"`

Expand Down

0 comments on commit ac80251

Please sign in to comment.