You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/node.go
+58-27Lines changed: 58 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -38,17 +38,26 @@ import (
38
38
constwarningMsg="The default behavior of exposing internal IPv6 addresses will change in the next minor version. Use --no-expose-internal-ipv6 flag to opt-in to the new behavior."
39
39
40
40
typenodeSourcestruct {
41
-
client kubernetes.Interface
42
-
annotationFilterstring
43
-
fqdnTemplate*template.Template
41
+
client kubernetes.Interface
42
+
annotationFilterstring
43
+
fqdnTemplate*template.Template
44
+
combineFQDNAnnotationbool
45
+
44
46
nodeInformer coreinformers.NodeInformer
45
47
labelSelector labels.Selector
46
48
excludeUnschedulablebool
47
49
exposeInternalIPv6bool
48
50
}
49
51
50
52
// NewNodeSource creates a new nodeSource with the given config.
0 commit comments