You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
errs=append(errs, field.Invalid(fldPath.Child("privateDNSName"), spec.PrivateDNSName, "privateDNSName is not supported"))
526
542
}
527
543
544
+
// Unsupported new fields in newer CAPA versions
545
+
ifspec.ElasticIPPool!=nil {
546
+
errs=append(errs, field.Invalid(fldPath.Child("elasticIpPool"), spec.ElasticIPPool, "elasticIpPool is not supported"))
547
+
}
548
+
549
+
ifspec.CapacityReservationPreference!="" {
550
+
errs=append(errs, field.Invalid(fldPath.Child("capacityReservationPreference"), spec.CapacityReservationPreference, "capacityReservationPreference is not supported"))
551
+
}
552
+
528
553
ifspec.Ignition!=nil {
529
554
ifspec.Ignition.Proxy!=nil {
530
555
// Ignition proxy is not configurable in MAPI. Not required for our use case.
0 commit comments