forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_endpoints.go
101 lines (90 loc) · 2.85 KB
/
service_endpoints.go
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package endpoints
import (
workloadutil "github.com/rancher/rancher/pkg/controllers/user/workload"
"github.com/rancher/types/apis/core/v1"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/sirupsen/logrus"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/labels"
)
// This controller is responsible for monitoring services
// and setting public endpoints on them (if they are of type NodePort or LoadBalancer)
type ServicesController struct {
services v1.ServiceInterface
serviceLister v1.ServiceLister
podLister v1.PodLister
podController v1.PodController
workloadController workloadutil.CommonController
machinesLister v3.NodeLister
clusterName string
}
func (s *ServicesController) sync(key string, obj *corev1.Service) error {
if obj == nil || obj.DeletionTimestamp != nil {
namespace := ""
if obj != nil {
namespace = obj.Namespace
}
// push changes to all pods, so service
// endpoints can be removed from there
//since service is removed, there is no way to narrow down the pod/workload search
s.podController.Enqueue(namespace, allEndpoints)
s.workloadController.EnqueueAllWorkloads(namespace)
return nil
}
_, err := s.reconcileEndpointsForService(obj)
if err != nil {
return err
}
return nil
}
func (s *ServicesController) reconcileEndpointsForService(svc *corev1.Service) (bool, error) {
// 1. update service with endpoints
allNodesIP, err := getAllNodesPublicEndpointIP(s.machinesLister, s.clusterName)
if err != nil {
return false, err
}
newPublicEps, err := convertServiceToPublicEndpoints(svc, "", nil, allNodesIP)
if err != nil {
return false, err
}
existingPublicEps := getPublicEndpointsFromAnnotations(svc.Annotations)
if areEqualEndpoints(existingPublicEps, newPublicEps) {
return false, nil
}
toUpdate := svc.DeepCopy()
epsToUpdate, err := publicEndpointsToString(newPublicEps)
if err != nil {
return false, err
}
logrus.Infof("Updating service [%s] with public endpoints [%v]", svc.Name, epsToUpdate)
if toUpdate.Annotations == nil {
toUpdate.Annotations = map[string]string{}
}
toUpdate.Annotations[endpointsAnnotation] = epsToUpdate
_, err = s.services.Update(toUpdate)
if err != nil {
return false, err
}
// 2. Push changes for pods behind the service
var pods []*corev1.Pod
set := labels.Set{}
for key, val := range svc.Spec.Selector {
set[key] = val
}
pods, err = s.podLister.List(svc.Namespace, labels.SelectorFromSet(set))
if err != nil {
return false, err
}
for _, pod := range pods {
s.podController.Enqueue(pod.Namespace, pod.Name)
}
// 3. Push changes to workload behind the service
workloads, err := s.workloadController.GetWorkloadsMatchingSelector(svc.Namespace, svc.Spec.Selector)
if err != nil {
return false, err
}
for _, w := range workloads {
s.workloadController.EnqueueWorkload(w)
}
return true, nil
}