| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /*
- Copyright © The ESO Authors
- 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
- https://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 ctrlcommon provides shared utility functions for controllers
- package ctrlcommon
- import (
- "context"
- "time"
- "golang.org/x/time/rate"
- corev1 "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/labels"
- "k8s.io/apimachinery/pkg/selection"
- "k8s.io/client-go/util/workqueue"
- "k8s.io/utils/ptr"
- ctrl "sigs.k8s.io/controller-runtime"
- "sigs.k8s.io/controller-runtime/pkg/cache"
- "sigs.k8s.io/controller-runtime/pkg/client"
- "sigs.k8s.io/controller-runtime/pkg/controller"
- "sigs.k8s.io/controller-runtime/pkg/reconcile"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- )
- // BuildManagedSecretClient creates a new client that only sees secrets with the "managed" label.
- func BuildManagedSecretClient(mgr ctrl.Manager, namespace string) (client.Client, error) {
- // secrets we manage will have the `reconcile.external-secrets.io/managed=true` label
- managedLabelReq, _ := labels.NewRequirement(esv1.LabelManaged, selection.Equals, []string{esv1.LabelManagedValue})
- managedLabelSelector := labels.NewSelector().Add(*managedLabelReq)
- // create a new cache with a label selector for managed secrets
- // NOTE: this means that the cache/client will be unable to see secrets without the "managed" label
- secretCacheOpts := cache.Options{
- HTTPClient: mgr.GetHTTPClient(),
- Scheme: mgr.GetScheme(),
- Mapper: mgr.GetRESTMapper(),
- ByObject: map[client.Object]cache.ByObject{
- &corev1.Secret{}: {
- Label: managedLabelSelector,
- },
- },
- // this requires us to explicitly start an informer for each object type
- // and helps avoid people mistakenly using the secret client for other resources
- ReaderFailOnMissingInformer: true,
- }
- if namespace != "" {
- secretCacheOpts.DefaultNamespaces = map[string]cache.Config{
- namespace: {},
- }
- }
- secretCache, err := cache.New(mgr.GetConfig(), secretCacheOpts)
- if err != nil {
- return nil, err
- }
- // start an informer for secrets
- // this is required because we set ReaderFailOnMissingInformer to true
- _, err = secretCache.GetInformer(context.Background(), &corev1.Secret{})
- if err != nil {
- return nil, err
- }
- // add the secret cache to the manager, so that it starts at the same time
- err = mgr.Add(secretCache)
- if err != nil {
- return nil, err
- }
- // create a new client that uses the secret cache
- secretClient, err := client.New(mgr.GetConfig(), client.Options{
- HTTPClient: mgr.GetHTTPClient(),
- Scheme: mgr.GetScheme(),
- Mapper: mgr.GetRESTMapper(),
- Cache: &client.CacheOptions{
- Reader: secretCache,
- },
- })
- if err != nil {
- return nil, err
- }
- return secretClient, nil
- }
- // BuildControllerOptions creates controller options with the given concurrency
- // and our standard rate limiter. The priority queue introduced in
- // controller-runtime v0.23.0 is explicitly disabled because it has known
- // issues at scale (see https://github.com/external-secrets/external-secrets/issues/6053).
- func BuildControllerOptions(concurrent int) controller.Options {
- return controller.Options{
- MaxConcurrentReconciles: concurrent,
- RateLimiter: BuildRateLimiter(),
- UsePriorityQueue: ptr.To(false),
- }
- }
- // BuildRateLimiter creates a new rate limiter for our controllers.
- // NOTE: we dont use `DefaultTypedControllerRateLimiter` because it retries very aggressively, starting at 5ms!
- func BuildRateLimiter() workqueue.TypedRateLimiter[reconcile.Request] {
- // exponential backoff rate limiter
- // - this handles per-item rate limiting for ~failures~
- // - it uses an exponential backoff strategy were: delay = baseDelay * 2^failures
- // - graph visualization: https://www.desmos.com/calculator/fexlpdmiti
- failureBaseDelay := 1 * time.Second
- failureMaxDelay := 7 * time.Minute
- failureRateLimiter := workqueue.NewTypedItemExponentialFailureRateLimiter[reconcile.Request](failureBaseDelay, failureMaxDelay)
- // overall rate limiter
- // - this handles overall rate limiting, ignoring individual items and only considering the overall rate
- // - it implements a "token bucket" of size totalMaxBurst that is initially full,
- // and which is refilled at rate totalEventsPerSecond tokens per second.
- totalEventsPerSecond := 10
- totalMaxBurst := 100
- totalRateLimiter := &workqueue.TypedBucketRateLimiter[reconcile.Request]{
- Limiter: rate.NewLimiter(rate.Limit(totalEventsPerSecond), totalMaxBurst),
- }
- // return the worst-case (longest) of the rate limiters for a given item
- return workqueue.NewTypedMaxOfRateLimiter[reconcile.Request](failureRateLimiter, totalRateLimiter)
- }
|