-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster_scoped_gc.go
104 lines (93 loc) · 2.9 KB
/
cluster_scoped_gc.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
102
103
104
package clustergc
import (
"context"
"strings"
"github.com/rancher/norman/lifecycle"
"github.com/rancher/norman/resource"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config"
"golang.org/x/sync/errgroup"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/dynamic"
)
func Register(ctx context.Context, management *config.ManagementContext) {
gc := &gcLifecycle{
mgmt: management,
}
management.Management.Clusters("").AddLifecycle(ctx, "cluster-scoped-gc", gc)
}
type gcLifecycle struct {
mgmt *config.ManagementContext
}
func (c *gcLifecycle) Create(obj *v3.Cluster) (runtime.Object, error) {
return obj, nil
}
func (c *gcLifecycle) Updated(obj *v3.Cluster) (runtime.Object, error) {
return nil, nil
}
func cleanFinalizers(clusterName string, object *unstructured.Unstructured, dynamicClient dynamic.ResourceInterface) (*unstructured.Unstructured, error) {
object = object.DeepCopy()
modified := false
md, err := meta.Accessor(object)
if err != nil {
return object, err
}
finalizers := md.GetFinalizers()
for i := len(finalizers) - 1; i >= 0; i-- {
f := finalizers[i]
if strings.HasPrefix(f, lifecycle.ScopedFinalizerKey) && strings.HasSuffix(f, "_"+clusterName) {
finalizers = append(finalizers[:i], finalizers[i+1:]...)
modified = true
}
}
if modified {
md.SetFinalizers(finalizers)
obj, e := dynamicClient.Update(object, metav1.UpdateOptions{})
return obj, e
}
return object, nil
}
// Remove check all objects that have had a cluster scoped finalizer added to them to ensure dangling finalizers do not
// remain on objects that no longer have handlers associated with them
func (c *gcLifecycle) Remove(cluster *v3.Cluster) (runtime.Object, error) {
RESTconfig := c.mgmt.RESTConfig
// due to the large number of api calls, temporary raise the burst limit in order to reduce client throttling
RESTconfig.Burst = 25
dynamicClient, err := dynamic.NewForConfig(&RESTconfig)
if err != nil {
return nil, err
}
decodedMap := resource.GetClusterScopedTypes()
//if map is empty, fall back to checking all Rancher types
if len(decodedMap) == 0 {
decodedMap = resource.Get()
}
var g errgroup.Group
for key := range decodedMap {
actualKey := key // https://golang.org/doc/faq#closures_and_goroutines
g.Go(func() error {
objList, err := dynamicClient.Resource(actualKey).List(metav1.ListOptions{})
if err != nil {
if errors.IsNotFound(err) {
return nil
}
return err
}
for _, obj := range objList.Items {
_, err = cleanFinalizers(cluster.Name, &obj, dynamicClient.Resource(actualKey).Namespace(obj.GetNamespace()))
if err != nil {
return err
}
}
return nil
})
}
if err = g.Wait(); err != nil {
return nil, err
}
return nil, nil
}