13 lines
214 B
Go
13 lines
214 B
Go
package node
|
|
|
|
import (
|
|
"context"
|
|
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
func RestartKubelet(context.Context, *NodeContext) error {
|
|
klog.Info("restart_kubelet: TODO implement rc-service kubelet restart")
|
|
return nil
|
|
}
|