Skip to content

Commit 53d2ca2

Browse files
set default to bare minimum resource values (#604)
Signed-off-by: Prajyot-Parab <[email protected]>
1 parent 752de42 commit 53d2ca2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/v1beta1/common.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import "k8s.io/apimachinery/pkg/util/validation/field"
2121
func defaultIBMPowerVSMachineSpec(spec *IBMPowerVSMachineSpec) {
2222

2323
if spec.Memory == "" {
24-
spec.Memory = "8"
24+
spec.Memory = "4"
2525
}
2626
if spec.Processors == "" {
2727
spec.Processors = "0.25"
@@ -63,6 +63,6 @@ func validateIBMPowerVSResourceReference(res IBMPowerVSResourceReference, resTyp
6363

6464
func defaultIBMVPCMachineSpec(spec *IBMVPCMachineSpec) {
6565
if spec.Profile == "" {
66-
spec.Profile = "bx2-4x16"
66+
spec.Profile = "bx2-2x8"
6767
}
6868
}

0 commit comments

Comments
 (0)