aboutsummaryrefslogtreecommitdiff
path: root/plugin/kubernetes/local.go
blob: 7a85de1bf9449ef431da6d2ecc55ca970591a71c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package kubernetes

import (
	"net"
)

func localPodIP() net.IP {
	addrs, err := net.InterfaceAddrs()
	if err != nil {
		return nil
	}

	for _, addr := range addrs {
		ip, _, _ := net.ParseCIDR(addr.String())
		ip = ip.To4()
		if ip == nil || ip.IsLoopback() {
			continue
		}
		return ip
	}
	return nil
}

func (k *Kubernetes) localNodeName() string {
	localIP := k.interfaceAddrsFunc()
	if localIP == nil {
		return ""
	}

	// Find endpoint matching localIP
	ep := k.APIConn.EpIndexReverse(localIP.String())
	if ep == nil {
		return ""
	}

	for _, eps := range ep.Subsets {
		for _, addr := range eps.Addresses {
			if localIP.Equal(net.ParseIP(addr.IP)) {
				return addr.NodeName
			}
		}
	}

	return ""
}