mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-02-22 10:19:28 +00:00
Bumps the k8s-dependencies group with 1 update in the / directory: [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime). Updates `sigs.k8s.io/controller-runtime` from 0.19.4 to 0.20.1 - [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases) - [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md) - [Commits](https://github.com/kubernetes-sigs/controller-runtime/compare/v0.19.4...v0.20.1) --- updated-dependencies: - dependency-name: sigs.k8s.io/controller-runtime dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
2.7 KiB
Go
63 lines
2.7 KiB
Go
/*
|
|
Copyright 2023 The Kubernetes 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
|
|
|
|
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 config
|
|
|
|
import "time"
|
|
|
|
// Controller contains configuration options for a controller.
|
|
type Controller struct {
|
|
// SkipNameValidation allows skipping the name validation that ensures that every controller name is unique.
|
|
// Unique controller names are important to get unique metrics and logs for a controller.
|
|
// Can be overwritten for a controller via the SkipNameValidation setting on the controller.
|
|
// Defaults to false if SkipNameValidation setting on controller and Manager are unset.
|
|
SkipNameValidation *bool
|
|
|
|
// GroupKindConcurrency is a map from a Kind to the number of concurrent reconciliation
|
|
// allowed for that controller.
|
|
//
|
|
// When a controller is registered within this manager using the builder utilities,
|
|
// users have to specify the type the controller reconciles in the For(...) call.
|
|
// If the object's kind passed matches one of the keys in this map, the concurrency
|
|
// for that controller is set to the number specified.
|
|
//
|
|
// The key is expected to be consistent in form with GroupKind.String(),
|
|
// e.g. ReplicaSet in apps group (regardless of version) would be `ReplicaSet.apps`.
|
|
GroupKindConcurrency map[string]int
|
|
|
|
// MaxConcurrentReconciles is the maximum number of concurrent Reconciles which can be run. Defaults to 1.
|
|
MaxConcurrentReconciles int
|
|
|
|
// CacheSyncTimeout refers to the time limit set to wait for syncing caches.
|
|
// Defaults to 2 minutes if not set.
|
|
CacheSyncTimeout time.Duration
|
|
|
|
// RecoverPanic indicates whether the panic caused by reconcile should be recovered.
|
|
// Can be overwritten for a controller via the RecoverPanic setting on the controller.
|
|
// Defaults to true if RecoverPanic setting on controller and Manager are unset.
|
|
RecoverPanic *bool
|
|
|
|
// NeedLeaderElection indicates whether the controller needs to use leader election.
|
|
// Defaults to true, which means the controller will use leader election.
|
|
NeedLeaderElection *bool
|
|
|
|
// UsePriorityQueue configures the controllers queue to use the controller-runtime provided
|
|
// priority queue.
|
|
//
|
|
// Note: This flag is disabled by default until a future version. It's currently in beta.
|
|
UsePriorityQueue *bool
|
|
}
|