Use typed events client directly

This commit is contained in:
Mikhail Mazurskiy
2018-03-29 23:24:26 +11:00
parent 61cddc9a7f
commit 468655b76a
28 changed files with 36 additions and 42 deletions

View File

@@ -84,7 +84,7 @@ func NewCloudNodeController(
eventBroadcaster.StartLogging(glog.Infof)
if kubeClient != nil {
glog.V(0).Infof("Sending events to api server.")
eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: v1core.New(kubeClient.CoreV1().RESTClient()).Events("")})
eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: kubeClient.CoreV1().Events("")})
} else {
glog.V(0).Infof("No api server defined - no events will be sent to API server.")
}