12 lines
218 B
Go
12 lines
218 B
Go
package node
|
|
|
|
import (
|
|
"context"
|
|
|
|
system "undecided.project/monok8s/pkg/system"
|
|
)
|
|
|
|
func StartKubelet(ctx context.Context, n *NodeContext) error {
|
|
return system.EnsureServiceRunning(ctx, n.SystemRunner, "kubelet")
|
|
}
|