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
errMachineAPIMachineSetOwnerReferenceConversionUnsupported=errors.New("could not convert Machine API machine set owner references to Cluster API")
90
+
91
+
// errInvalidInfraClusterReference is returned when the cluster name is empty in CAPI machineset spec.
92
+
errInvalidInfraClusterReference=errors.New("cluster name is empty in Cluster API machine set spec")
93
+
94
+
// errInvalidInfraMachineTemplateReference is returned when the infrastructure machine template reference is invalid or incomplete.
95
+
errInvalidInfraMachineTemplateReference=errors.New("infrastructure machine template reference is invalid or incomplete")
90
96
)
91
97
92
98
const (
@@ -105,6 +111,8 @@ const (
105
111
messageSuccessfullySynchronizedMAPItoCAPI="Successfully synchronized MAPI MachineSet to CAPI"
106
112
107
113
controllerNamestring="MachineSetSyncController"
114
+
115
+
terminalConfigurationErrorLogstring="Detected terminal configuration error - cluster name or infrastructure machine template reference is empty, not requeuing"
108
116
)
109
117
110
118
// MachineSetSyncReconciler reconciles CAPI and MAPI MachineSets.
0 commit comments