File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
pkg/kubelet/dockershim/network Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,14 @@ import (
36
36
utilexec "k8s.io/utils/exec"
37
37
)
38
38
39
- const DefaultPluginName = "kubernetes.io/no-op"
39
+ const (
40
+ DefaultPluginName = "kubernetes.io/no-op"
40
41
41
- // Called when the node's Pod CIDR is known when using the
42
- // controller manager's --allocate-node-cidrs=true option
43
- const NET_PLUGIN_EVENT_POD_CIDR_CHANGE = "pod-cidr-change"
44
- const NET_PLUGIN_EVENT_POD_CIDR_CHANGE_DETAIL_CIDR = "pod-cidr"
42
+ // Called when the node's Pod CIDR is known when using the
43
+ // controller manager's --allocate-node-cidrs=true option
44
+ NET_PLUGIN_EVENT_POD_CIDR_CHANGE = "pod-cidr-change"
45
+ NET_PLUGIN_EVENT_POD_CIDR_CHANGE_DETAIL_CIDR = "pod-cidr"
46
+ )
45
47
46
48
// NetworkPlugin is an interface to network plugins for the kubelet
47
49
type NetworkPlugin interface {
You can’t perform that action at this time.
0 commit comments