This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
to_mr.go
86 lines (73 loc) · 2.66 KB
/
to_mr.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
// Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package mapper
import (
"context"
resourcesv1alpha1 "github.com/gardener/gardener-resource-manager/pkg/apis/resources/v1alpha1"
"github.com/gardener/gardener-resource-manager/pkg/controller/utils"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/predicate"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
)
type secretToManagedResourceMapper struct {
client client.Client
ctx context.Context
predicates []predicate.Predicate
}
func (m *secretToManagedResourceMapper) InjectClient(client client.Client) error {
m.client = client
return nil
}
func (m *secretToManagedResourceMapper) InjectStopChannel(stopCh <-chan struct{}) error {
m.ctx = utils.ContextFromStopChannel(stopCh)
return nil
}
func (m *secretToManagedResourceMapper) Map(obj handler.MapObject) []reconcile.Request {
if obj.Object == nil {
return nil
}
secret, ok := obj.Object.(*corev1.Secret)
if !ok {
return nil
}
managedResourceList := &resourcesv1alpha1.ManagedResourceList{}
if err := m.client.List(m.ctx, managedResourceList, client.InNamespace(secret.Namespace)); err != nil {
return nil
}
var requests []reconcile.Request
for _, mr := range managedResourceList.Items {
if !utils.EvalGenericPredicate(&mr, m.predicates...) {
continue
}
for _, secretRef := range mr.Spec.SecretRefs {
if secretRef.Name == secret.Name {
requests = append(requests, reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: mr.Namespace,
Name: mr.Name,
},
})
}
}
}
return requests
}
// SecretToManagedResourceMapper returns a mapper that returns requests for ManagedResources whose
// referenced secrets have been modified.
func SecretToManagedResourceMapper(predicates ...predicate.Predicate) handler.Mapper {
return &secretToManagedResourceMapper{predicates: predicates}
}