diff --git a/pkg/kubelet/network/cni/cni.go b/pkg/kubelet/network/cni/cni.go index 55cedf358e3..f8eff7d1437 100644 --- a/pkg/kubelet/network/cni/cni.go +++ b/pkg/kubelet/network/cni/cni.go @@ -278,7 +278,7 @@ func (plugin *cniNetworkPlugin) GetPodNetworkStatus(namespace string, name strin func (plugin *cniNetworkPlugin) addToNetwork(network *cniNetwork, podName string, podNamespace string, podInfraContainerID kubecontainer.ContainerID, podNetnsPath string) (cnitypes.Result, error) { rt, err := plugin.buildCNIRuntimeConf(podName, podNamespace, podInfraContainerID, podNetnsPath) if err != nil { - glog.Errorf("Error adding network when buliding cni runtime conf: %v", err) + glog.Errorf("Error adding network when building cni runtime conf: %v", err) return nil, err } @@ -296,7 +296,7 @@ func (plugin *cniNetworkPlugin) addToNetwork(network *cniNetwork, podName string func (plugin *cniNetworkPlugin) deleteFromNetwork(network *cniNetwork, podName string, podNamespace string, podInfraContainerID kubecontainer.ContainerID, podNetnsPath string) error { rt, err := plugin.buildCNIRuntimeConf(podName, podNamespace, podInfraContainerID, podNetnsPath) if err != nil { - glog.Errorf("Error deleting network when buliding cni runtime conf: %v", err) + glog.Errorf("Error deleting network when building cni runtime conf: %v", err) return err }