23 lines
497 B
Go
23 lines
497 B
Go
package node
|
|
|
|
import (
|
|
"context"
|
|
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
func InstallCNIIfRequested(context.Context, *NodeContext) error {
|
|
klog.Info("install_cni_if_requested: TODO implement bridge/none CNI toggling")
|
|
return nil
|
|
}
|
|
|
|
func StartCRIO(context.Context, *NodeContext) error {
|
|
klog.Info("start_crio: TODO implement rc-service crio start")
|
|
return nil
|
|
}
|
|
|
|
func CheckCRIORunning(context.Context, *NodeContext) error {
|
|
klog.Info("check_crio_running: TODO implement crictl readiness checks")
|
|
return nil
|
|
}
|