File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
controlplane/kubeadm/api/v1beta1 Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -186,9 +186,6 @@ const (
186
186
187
187
// KubeadmControlPlaneNotRollingOutV1Beta2Reason surfaces when all the machines are up-to-date.
188
188
KubeadmControlPlaneNotRollingOutV1Beta2Reason = clusterv1 .NotRollingOutV1Beta2Reason
189
-
190
- // KubeadmControlPlaneRollingOutInternalErrorV1Beta2Reason surfaces unexpected failures when listing machines.
191
- KubeadmControlPlaneRollingOutInternalErrorV1Beta2Reason = clusterv1 .InternalErrorV1Beta2Reason
192
189
)
193
190
194
191
// KubeadmControlPlane's ScalingUp condition and corresponding reasons that will be used in v1Beta2 API version.
Original file line number Diff line number Diff line change @@ -16,7 +16,10 @@ limitations under the License.
16
16
17
17
package v1beta1
18
18
19
- import clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
19
+ /*
20
+ NOTE: we are commenting const for MachinePool's V1Beta2 conditions and reasons because not yet implemented for the 1.9 CAPI release.
21
+ However, we are keeping the v1beta2 struct in the MachinePool struct because the code that will collect conditions and replica
22
+ counters at cluster level is already implemented.
20
23
21
24
// Conditions that will be used for the MachinePool object in v1Beta2 API version.
22
25
const (
@@ -46,4 +49,5 @@ const (
46
49
47
50
// MachinePoolDeletingV1Beta2Condition surfaces details about ongoing deletion of the controlled machines.
48
51
MachinePoolDeletingV1Beta2Condition = clusterv1.DeletingV1Beta2Condition
49
- )
52
+ ).
53
+ */
You can’t perform that action at this time.
0 commit comments