diff --git a/pkg/cloudprovider/nodecontroller/nodecontroller.go b/pkg/cloudprovider/nodecontroller/nodecontroller.go index 55510ebfb26..1b53bd5006c 100644 --- a/pkg/cloudprovider/nodecontroller/nodecontroller.go +++ b/pkg/cloudprovider/nodecontroller/nodecontroller.go @@ -612,9 +612,6 @@ func (nc *NodeController) monitorNodeStatus() error { } // Report node events. - if readyCondition.Status == api.ConditionTrue && lastReadyCondition.Status != api.ConditionTrue { - nc.recordNodeEvent(node, "ready") - } if readyCondition.Status == api.ConditionFalse && lastReadyCondition.Status != api.ConditionFalse { nc.recordNodeEvent(node, "not_ready") }