mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-02-06 20:11:16 +00:00
Bump up the versions of severel Kubernetes-related libs Signed-off-by: Wenkai Yin(尹文开) <yinw@vmware.com>
76 lines
2.5 KiB
Go
76 lines
2.5 KiB
Go
/*
|
|
Copyright the Velero contributors.
|
|
|
|
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 kube
|
|
|
|
import (
|
|
"context"
|
|
|
|
"k8s.io/client-go/util/workqueue"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/event"
|
|
"sigs.k8s.io/controller-runtime/pkg/handler"
|
|
"sigs.k8s.io/controller-runtime/pkg/reconcile"
|
|
)
|
|
|
|
type MapUpdateFunc func(context.Context, client.Object) []reconcile.Request
|
|
|
|
// EnqueueRequestsFromMapUpdateFunc has the same purpose with handler.EnqueueRequestsFromMapFunc.
|
|
// MapUpdateFunc is simpler on Update event because mapAndEnqueue is called once with the new object. EnqueueRequestsFromMapFunc is called twice with the old and new object.
|
|
func EnqueueRequestsFromMapUpdateFunc(fn MapUpdateFunc) handler.EventHandler {
|
|
return &enqueueRequestsFromMapFunc{
|
|
toRequests: fn,
|
|
}
|
|
}
|
|
|
|
var _ handler.EventHandler = &enqueueRequestsFromMapFunc{}
|
|
|
|
type enqueueRequestsFromMapFunc struct {
|
|
toRequests MapUpdateFunc
|
|
}
|
|
|
|
// Create implements EventHandler.
|
|
func (e *enqueueRequestsFromMapFunc) Create(ctx context.Context, evt event.CreateEvent, q workqueue.RateLimitingInterface) {
|
|
e.mapAndEnqueue(ctx, q, evt.Object)
|
|
}
|
|
|
|
// Update implements EventHandler.
|
|
func (e *enqueueRequestsFromMapFunc) Update(ctx context.Context, evt event.UpdateEvent, q workqueue.RateLimitingInterface) {
|
|
e.mapAndEnqueue(ctx, q, evt.ObjectNew)
|
|
}
|
|
|
|
// Delete implements EventHandler.
|
|
func (e *enqueueRequestsFromMapFunc) Delete(ctx context.Context, evt event.DeleteEvent, q workqueue.RateLimitingInterface) {
|
|
e.mapAndEnqueue(ctx, q, evt.Object)
|
|
}
|
|
|
|
// Generic implements EventHandler.
|
|
func (e *enqueueRequestsFromMapFunc) Generic(ctx context.Context, evt event.GenericEvent, q workqueue.RateLimitingInterface) {
|
|
e.mapAndEnqueue(ctx, q, evt.Object)
|
|
}
|
|
|
|
func (e *enqueueRequestsFromMapFunc) mapAndEnqueue(ctx context.Context, q workqueue.RateLimitingInterface, object client.Object) {
|
|
reqs := map[reconcile.Request]struct{}{}
|
|
|
|
for _, req := range e.toRequests(ctx, object) {
|
|
_, ok := reqs[req]
|
|
if !ok {
|
|
q.Add(req)
|
|
reqs[req] = struct{}{}
|
|
}
|
|
}
|
|
}
|