forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8s_pod_controller.go
97 lines (85 loc) · 3.25 KB
/
k8s_pod_controller.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
// SPDX-License-Identifier: Apache-2.0
// Copyright Authors of Cilium
package main
import (
"context"
"fmt"
"time"
"github.com/sirupsen/logrus"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
operatorOption "github.com/cilium/cilium/operator/option"
"github.com/cilium/cilium/operator/watchers"
"github.com/cilium/cilium/pkg/controller"
"github.com/cilium/cilium/pkg/k8s"
slim_corev1 "github.com/cilium/cilium/pkg/k8s/slim/k8s/api/core/v1"
"github.com/cilium/cilium/pkg/logging/logfields"
)
const (
minimalPodRestartInterval = 5 * time.Minute
unmanagedKubeDnsMinimalAge = 30 * time.Second
)
var (
lastPodRestart = map[string]time.Time{}
)
func enableUnmanagedKubeDNSController() {
// These functions will block until the resources are synced with k8s.
watchers.CiliumEndpointsInit(k8s.CiliumClient().CiliumV2(), wait.NeverStop)
watchers.UnmanagedKubeDNSPodsInit(k8s.WatcherClient())
controller.NewManager().UpdateController("restart-unmanaged-kube-dns",
controller.ControllerParams{
RunInterval: time.Duration(operatorOption.Config.UnmanagedPodWatcherInterval) * time.Second,
DoFunc: func(ctx context.Context) error {
for podName, lastRestart := range lastPodRestart {
if time.Since(lastRestart) > 2*minimalPodRestartInterval {
delete(lastPodRestart, podName)
}
}
for _, podItem := range watchers.UnmanagedKubeDNSPodStore.List() {
pod, ok := podItem.(*slim_corev1.Pod)
if !ok {
log.Errorf("unexpected type mapping: found %T, expected %T", pod, &slim_corev1.Pod{})
continue
}
if pod.Spec.HostNetwork {
continue
}
cep, exists, err := watchers.HasCE(pod.Namespace, pod.Name)
if err != nil {
log.WithError(err).WithField(logfields.EndpointID, fmt.Sprintf("%s/%s", pod.Namespace, pod.Name)).
Errorf("Unexpected error when getting CiliumEndpoint")
continue
}
podID := fmt.Sprintf("%s/%s", pod.Namespace, pod.Name)
if exists {
log.WithFields(logrus.Fields{
logfields.K8sPodName: podID,
logfields.Identity: cep.Status.ID,
}).Debug("Found kube-dns pod")
} else {
log.WithField(logfields.K8sPodName, podID).Debugf("Found unmanaged kube-dns pod")
if startTime := pod.Status.StartTime; startTime != nil {
if age := time.Since((*startTime).Time); age > unmanagedKubeDnsMinimalAge {
if lastRestart, ok := lastPodRestart[podID]; ok {
if timeSinceRestart := time.Since(lastRestart); timeSinceRestart < minimalPodRestartInterval {
log.WithField(logfields.K8sPodName, podID).
Debugf("Not restaring kube-dns pod, only %s since last restart", timeSinceRestart)
continue
}
}
log.WithField(logfields.K8sPodName, podID).Infof("Restarting unmanaged kube-dns pod, started %s ago", age)
if err := k8s.Client().CoreV1().Pods(pod.Namespace).Delete(ctx, pod.Name, metav1.DeleteOptions{}); err != nil {
log.WithError(err).WithField(logfields.K8sPodName, podID).Warning("Unable to restart pod")
} else {
lastPodRestart[podID] = time.Now()
// Delete a single pod per iteration to avoid killing all replicas at once
return nil
}
}
}
}
}
return nil
},
})
}