diff --git a/api/v1beta1/common.go b/api/v1beta1/common.go index 4e43bb50f..d27041d12 100644 --- a/api/v1beta1/common.go +++ b/api/v1beta1/common.go @@ -21,7 +21,7 @@ import "k8s.io/apimachinery/pkg/util/validation/field" func defaultIBMPowerVSMachineSpec(spec *IBMPowerVSMachineSpec) { if spec.Memory == "" { - spec.Memory = "8" + spec.Memory = "4" } if spec.Processors == "" { spec.Processors = "0.25" @@ -63,6 +63,6 @@ func validateIBMPowerVSResourceReference(res IBMPowerVSResourceReference, resTyp func defaultIBMVPCMachineSpec(spec *IBMVPCMachineSpec) { if spec.Profile == "" { - spec.Profile = "bx2-4x16" + spec.Profile = "bx2-2x8" } }