Skip to content

Commit a14313a

Browse files
committed
Fix setting wrong condition type
Signed-off-by: Borja Clemente <[email protected]>
1 parent 0c3775d commit a14313a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exp/controllers/awsfargatepool_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (r *AWSFargateProfileReconciler) Reconcile(ctx context.Context, req ctrl.Re
127127

128128
if !controlPlane.Status.Ready {
129129
log.Info("Control plane is not ready yet")
130-
v1beta1conditions.MarkFalse(fargateProfile, clusterv1.ReadyCondition, expinfrav1.WaitingForEKSControlPlaneReason, clusterv1beta1.ConditionSeverityInfo, "")
130+
v1beta1conditions.MarkFalse(fargateProfile, clusterv1beta1.ReadyCondition, expinfrav1.WaitingForEKSControlPlaneReason, clusterv1beta1.ConditionSeverityInfo, "")
131131
return ctrl.Result{}, nil
132132
}
133133

0 commit comments

Comments
 (0)