Skip to content

Commit ac80251

Browse files
authored
Merge pull request #4994 from serngawy/autorepair
🐛 ROSA: Fix autoRepair default value
2 parents b99443a + 37fb2e8 commit ac80251

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

config/crd/bases/infrastructure.cluster.x-k8s.io_rosamachinepools.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ spec:
6666
underlying EC2 instances associated with this machine pool.
6767
type: object
6868
autoRepair:
69-
default: false
69+
default: true
7070
description: |-
7171
AutoRepair specifies whether health checks should be enabled for machines
72-
in the NodePool. The default is false.
72+
in the NodePool. The default is true.
7373
type: boolean
7474
autoscaling:
7575
description: |-

exp/api/v1beta2/rosamachinepool_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ type RosaMachinePoolSpec struct {
6565
AdditionalTags infrav1.Tags `json:"additionalTags,omitempty"`
6666

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

0 commit comments

Comments
 (0)