Documentation ¶
Index ¶
- Constants
- Variables
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type BackupBucketControllerConfiguration
- type BackupEntryControllerConfiguration
- type ConditionThreshold
- type ControllerInstallationCareControllerConfiguration
- type ControllerInstallationControllerConfiguration
- type ControllerInstallationRequiredControllerConfiguration
- type FluentBit
- type GardenClientConnection
- type GardenLoki
- type GardenletConfiguration
- type GardenletControllerConfiguration
- type HTTPSServer
- type LeaderElectionConfiguration
- type Logging
- type Loki
- type ManagedSeedControllerConfiguration
- type ResourcesConfiguration
- type SNI
- type SNIIngress
- type SeedAPIServerNetworkPolicyControllerConfiguration
- type SeedClientConnection
- type SeedConfig
- type SeedControllerConfiguration
- type Server
- type ServerConfiguration
- type ShootCareControllerConfiguration
- type ShootClientConnection
- type ShootControllerConfiguration
- type ShootStateSyncControllerConfiguration
- type StaleExtensionHealthChecks
- type TLSServer
Constants ¶
const GroupName = "gardenlet.config.gardener.cloud"
GroupName is the group name use in this package
Variables ¶
var ( // SchemeBuilder used to register the Shoot resource. SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme is a pointer to SchemeBuilder.AddToScheme. AddToScheme = SchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type BackupBucketControllerConfiguration ¶
type BackupBucketControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on events. ConcurrentSyncs *int }
BackupBucketControllerConfiguration defines the configuration of the BackupBucket controller.
func (*BackupBucketControllerConfiguration) DeepCopy ¶
func (in *BackupBucketControllerConfiguration) DeepCopy() *BackupBucketControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupBucketControllerConfiguration.
func (*BackupBucketControllerConfiguration) DeepCopyInto ¶
func (in *BackupBucketControllerConfiguration) DeepCopyInto(out *BackupBucketControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackupEntryControllerConfiguration ¶
type BackupEntryControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on events. ConcurrentSyncs *int // DeletionGracePeriodHours holds the period in number of hours to delete the BackupEntry after deletion timestamp is set. // If value is set to 0 then the BackupEntryController will trigger deletion immediately. DeletionGracePeriodHours *int // DeletionGracePeriodShootPurposes is a list of shoot purposes for which the deletion grace period applies. All // BackupEntries corresponding to Shoots with different purposes will be deleted immediately. DeletionGracePeriodShootPurposes []gardencore.ShootPurpose }
BackupEntryControllerConfiguration defines the configuration of the BackupEntry controller.
func (*BackupEntryControllerConfiguration) DeepCopy ¶
func (in *BackupEntryControllerConfiguration) DeepCopy() *BackupEntryControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackupEntryControllerConfiguration.
func (*BackupEntryControllerConfiguration) DeepCopyInto ¶
func (in *BackupEntryControllerConfiguration) DeepCopyInto(out *BackupEntryControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConditionThreshold ¶
type ConditionThreshold struct { // Type is the type of the condition to define the threshold for. Type string // Duration is the duration how long the condition can stay in the progressing state. Duration metav1.Duration }
ConditionThreshold defines the duration how long a flappy condition stays in progressing state.
func (*ConditionThreshold) DeepCopy ¶
func (in *ConditionThreshold) DeepCopy() *ConditionThreshold
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConditionThreshold.
func (*ConditionThreshold) DeepCopyInto ¶
func (in *ConditionThreshold) DeepCopyInto(out *ConditionThreshold)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerInstallationCareControllerConfiguration ¶ added in v0.34.0
type ControllerInstallationCareControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int // SyncPeriod is the duration how often the existing resources are reconciled (how // often the health check of ControllerInstallations is performed. SyncPeriod *metav1.Duration }
ControllerInstallationCareControllerConfiguration defines the configuration of the ControllerInstallationCare controller.
func (*ControllerInstallationCareControllerConfiguration) DeepCopy ¶ added in v0.34.0
func (in *ControllerInstallationCareControllerConfiguration) DeepCopy() *ControllerInstallationCareControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerInstallationCareControllerConfiguration.
func (*ControllerInstallationCareControllerConfiguration) DeepCopyInto ¶ added in v0.34.0
func (in *ControllerInstallationCareControllerConfiguration) DeepCopyInto(out *ControllerInstallationCareControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerInstallationControllerConfiguration ¶
type ControllerInstallationControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int }
ControllerInstallationControllerConfiguration defines the configuration of the ControllerInstallation controller.
func (*ControllerInstallationControllerConfiguration) DeepCopy ¶
func (in *ControllerInstallationControllerConfiguration) DeepCopy() *ControllerInstallationControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerInstallationControllerConfiguration.
func (*ControllerInstallationControllerConfiguration) DeepCopyInto ¶
func (in *ControllerInstallationControllerConfiguration) DeepCopyInto(out *ControllerInstallationControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ControllerInstallationRequiredControllerConfiguration ¶ added in v1.5.0
type ControllerInstallationRequiredControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int }
ControllerInstallationRequiredControllerConfiguration defines the configuration of the ControllerInstallationRequired controller.
func (*ControllerInstallationRequiredControllerConfiguration) DeepCopy ¶ added in v1.5.0
func (in *ControllerInstallationRequiredControllerConfiguration) DeepCopy() *ControllerInstallationRequiredControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerInstallationRequiredControllerConfiguration.
func (*ControllerInstallationRequiredControllerConfiguration) DeepCopyInto ¶ added in v1.5.0
func (in *ControllerInstallationRequiredControllerConfiguration) DeepCopyInto(out *ControllerInstallationRequiredControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type FluentBit ¶ added in v1.12.0
type FluentBit struct { // ServiceSection defines [SERVICE] configuration for the fluent-bit. // If it is nil, fluent-bit uses default service configuration. ServiceSection *string // InputSection defines [INPUT] configuration for the fluent-bit. // If it is nil, fluent-bit uses default input configuration. InputSection *string // OutputSection defines [OUTPUT] configuration for the fluent-bit. // If it is nil, fluent-bit uses default output configuration. OutputSection *string }
FluentBit contains configuration for Fluent Bit.
func (*FluentBit) DeepCopy ¶ added in v1.12.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FluentBit.
func (*FluentBit) DeepCopyInto ¶ added in v1.12.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GardenClientConnection ¶
type GardenClientConnection struct { componentbaseconfig.ClientConnectionConfiguration // GardenClusterAddress is the external address that the gardenlets can use to remotely connect to the Garden // cluster. It is needed in case the gardenlet deploys itself into shooted seeds. GardenClusterAddress *string // GardenClusterCACert is the external address that the gardenlets can use to remotely connect to the Garden // cluster. It is needed in case the gardenlet deploys itself into shooted seeds. GardenClusterCACert []byte // BootstrapKubeconfig is a reference to a secret that contains a data key 'kubeconfig' whose value // is a kubeconfig that can be used for bootstrapping. If `kubeconfig` is given then only this kubeconfig // will be considered. BootstrapKubeconfig *corev1.SecretReference // KubeconfigSecret is the reference to a secret object that stores the gardenlet's kubeconfig that // it uses to communicate with the garden cluster. If `kubeconfig` is given then only this kubeconfig // will be considered. KubeconfigSecret *corev1.SecretReference }
GardenClientConnection specifies the kubeconfig file and the client connection settings for the proxy server to use when communicating with the garden apiserver.
func (*GardenClientConnection) DeepCopy ¶
func (in *GardenClientConnection) DeepCopy() *GardenClientConnection
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GardenClientConnection.
func (*GardenClientConnection) DeepCopyInto ¶
func (in *GardenClientConnection) DeepCopyInto(out *GardenClientConnection)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GardenLoki ¶ added in v1.20.0
type GardenLoki struct { // Priority is the priority value for the Loki Priority *int32 }
GardenLoki contains configuration for the Loki in garden namespace.
func (*GardenLoki) DeepCopy ¶ added in v1.20.0
func (in *GardenLoki) DeepCopy() *GardenLoki
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GardenLoki.
func (*GardenLoki) DeepCopyInto ¶ added in v1.20.0
func (in *GardenLoki) DeepCopyInto(out *GardenLoki)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GardenletConfiguration ¶
type GardenletConfiguration struct { metav1.TypeMeta // GardenClientConnection specifies the kubeconfig file and the client connection settings // for the proxy server to use when communicating with the garden apiserver. GardenClientConnection *GardenClientConnection // SeedClientConnection specifies the client connection settings for the proxy server // to use when communicating with the seed apiserver. SeedClientConnection *SeedClientConnection // ShootClientConnection specifies the client connection settings for the proxy server // to use when communicating with the shoot apiserver. ShootClientConnection *ShootClientConnection // Controllers defines the configuration of the controllers. Controllers *GardenletControllerConfiguration // Resources defines the total capacity for seed resources and the amount reserved for use by Gardener. Resources *ResourcesConfiguration // LeaderElection defines the configuration of leader election client. LeaderElection *LeaderElectionConfiguration // LogLevel is the level/severity for the logs. Must be one of [info,debug,error]. LogLevel *string // KubernetesLogLevel is the log level used for Kubernetes' k8s.io/klog functions. KubernetesLogLevel *klog.Level // Server defines the configuration of the HTTP server. Server *ServerConfiguration // FeatureGates is a map of feature names to bools that enable or disable alpha/experimental // features. This field modifies piecemeal the built-in default values from // "github.com/gardener/gardener/pkg/gardenlet/features/features.go". // Default: nil FeatureGates map[string]bool // SeedConfig contains configuration for the seed cluster. Must not be set if seed selector is set. // In this case the gardenlet creates the `Seed` object itself based on the provided config. SeedConfig *SeedConfig // SeedSelector contains an optional list of labels on `Seed` resources that shall be managed by // this gardenlet instance. In this case the `Seed` object is not managed by the Gardenlet and must // be created by an operator/administrator. SeedSelector *metav1.LabelSelector // Logging contains an optional configurations for the logging stack deployed // by the Gardenlet in the seed clusters. Logging *Logging // SNI contains an optional configuration for the APIServerSNI feature used // by the Gardenlet in the seed clusters. SNI *SNI }
GardenletConfiguration defines the configuration for the Gardenlet.
func (*GardenletConfiguration) DeepCopy ¶
func (in *GardenletConfiguration) DeepCopy() *GardenletConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GardenletConfiguration.
func (*GardenletConfiguration) DeepCopyInto ¶
func (in *GardenletConfiguration) DeepCopyInto(out *GardenletConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GardenletConfiguration) DeepCopyObject ¶
func (in *GardenletConfiguration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type GardenletControllerConfiguration ¶
type GardenletControllerConfiguration struct { // BackupBucket defines the configuration of the BackupBucket controller. BackupBucket *BackupBucketControllerConfiguration // BackupEntry defines the configuration of the BackupEntry controller. BackupEntry *BackupEntryControllerConfiguration // ControllerInstallation defines the configuration of the ControllerInstallation controller. ControllerInstallation *ControllerInstallationControllerConfiguration // ControllerInstallationCare defines the configuration of the ControllerInstallationCare controller. ControllerInstallationCare *ControllerInstallationCareControllerConfiguration // ControllerInstallationRequired defines the configuration of the ControllerInstallationRequired controller. ControllerInstallationRequired *ControllerInstallationRequiredControllerConfiguration // Seed defines the configuration of the Seed controller. Seed *SeedControllerConfiguration // Shoot defines the configuration of the Shoot controller. Shoot *ShootControllerConfiguration // ShootCare defines the configuration of the ShootCare controller. ShootCare *ShootCareControllerConfiguration // ShootStateSync defines the configuration of the ShootState controller. ShootStateSync *ShootStateSyncControllerConfiguration // SeedAPIServerNetworkPolicy defines the configuration of the SeedAPIServerNetworkPolicy controller. SeedAPIServerNetworkPolicy *SeedAPIServerNetworkPolicyControllerConfiguration // ManagedSeedControllerConfiguration the configuration of the ManagedSeed controller. ManagedSeed *ManagedSeedControllerConfiguration }
GardenletControllerConfiguration defines the configuration of the controllers.
func (*GardenletControllerConfiguration) DeepCopy ¶
func (in *GardenletControllerConfiguration) DeepCopy() *GardenletControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GardenletControllerConfiguration.
func (*GardenletControllerConfiguration) DeepCopyInto ¶
func (in *GardenletControllerConfiguration) DeepCopyInto(out *GardenletControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HTTPSServer ¶ added in v1.5.0
type HTTPSServer struct { // Server is the configuration for the bind address and the port. Server // TLSServer contains information about the TLS configuration for a HTTPS server. If empty then a proper server // certificate will be self-generated during startup. TLS *TLSServer }
HTTPSServer is the configuration for the HTTPSServer server.
func (*HTTPSServer) DeepCopy ¶ added in v1.5.0
func (in *HTTPSServer) DeepCopy() *HTTPSServer
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPSServer.
func (*HTTPSServer) DeepCopyInto ¶ added in v1.5.0
func (in *HTTPSServer) DeepCopyInto(out *HTTPSServer)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LeaderElectionConfiguration ¶
type LeaderElectionConfiguration struct { componentbaseconfig.LeaderElectionConfiguration // LockObjectNamespace defines the namespace of the lock object. LockObjectNamespace *string // LockObjectName defines the lock object name. LockObjectName *string }
LeaderElectionConfiguration defines the configuration of leader election clients for components that can run with leader election enabled.
func (*LeaderElectionConfiguration) DeepCopy ¶
func (in *LeaderElectionConfiguration) DeepCopy() *LeaderElectionConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LeaderElectionConfiguration.
func (*LeaderElectionConfiguration) DeepCopyInto ¶
func (in *LeaderElectionConfiguration) DeepCopyInto(out *LeaderElectionConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Logging ¶ added in v1.12.0
type Logging struct { // FluentBit contains configurations for the fluent-bit FluentBit *FluentBit // Loki contains configuration for the Loki Loki *Loki }
Logging contains configuration for the logging stack.
func (*Logging) DeepCopy ¶ added in v1.12.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Logging.
func (*Logging) DeepCopyInto ¶ added in v1.12.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Loki ¶ added in v1.20.0
type Loki struct { // Garden contains configuration for the Loki in garden namespace. Garden *GardenLoki }
Loki contains configuration for the Loki.
func (*Loki) DeepCopy ¶ added in v1.20.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Loki.
func (*Loki) DeepCopyInto ¶ added in v1.20.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ManagedSeedControllerConfiguration ¶ added in v1.18.0
type ManagedSeedControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int // SyncPeriod is the duration how often the existing resources are reconciled. SyncPeriod *metav1.Duration // WaitSyncPeriod is the duration how often an existing resource is reconciled when the controller is waiting for an event. WaitSyncPeriod *metav1.Duration // SyncJitterPeriod is a jitter duration for the reconciler sync that can be used to distribute the syncs randomly. // If its value is greater than 0 then the managed seeds will not be enqueued immediately but only after a random // duration between 0 and the configured value. It is defaulted to 5m. SyncJitterPeriod *metav1.Duration }
ManagedSeedControllerConfiguration defines the configuration of the ManagedSeed controller.
func (*ManagedSeedControllerConfiguration) DeepCopy ¶ added in v1.18.0
func (in *ManagedSeedControllerConfiguration) DeepCopy() *ManagedSeedControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedSeedControllerConfiguration.
func (*ManagedSeedControllerConfiguration) DeepCopyInto ¶ added in v1.18.0
func (in *ManagedSeedControllerConfiguration) DeepCopyInto(out *ManagedSeedControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourcesConfiguration ¶ added in v1.13.0
type ResourcesConfiguration struct { // Capacity defines the total resources of a seed. Capacity corev1.ResourceList // Reserved defines the resources of a seed that are reserved for use by Gardener. // Defaults to 0. Reserved corev1.ResourceList }
ResourcesConfiguration defines the total capacity for seed resources and the amount reserved for use by Gardener.
func (*ResourcesConfiguration) DeepCopy ¶ added in v1.13.0
func (in *ResourcesConfiguration) DeepCopy() *ResourcesConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourcesConfiguration.
func (*ResourcesConfiguration) DeepCopyInto ¶ added in v1.13.0
func (in *ResourcesConfiguration) DeepCopyInto(out *ResourcesConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SNI ¶ added in v1.13.0
type SNI struct { // Ingress is the ingressgateway configuration. Ingress *SNIIngress }
SNI contains an optional configuration for the APIServerSNI feature used by the Gardenlet in the seed clusters.
func (*SNI) DeepCopy ¶ added in v1.13.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SNI.
func (*SNI) DeepCopyInto ¶ added in v1.13.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SNIIngress ¶ added in v1.13.0
type SNIIngress struct { // ServiceName is the name of the ingressgateway Service. // Defaults to "istio-ingressgateway". ServiceName *string // Namespace is the namespace in which the ingressgateway is deployed in. // Defaults to "istio-ingress". Namespace *string // Labels of the ingressgateway // Defaults to "istio: ingressgateway". Labels map[string]string }
SNIIngress contains configuration of the ingressgateway.
func (*SNIIngress) DeepCopy ¶ added in v1.13.0
func (in *SNIIngress) DeepCopy() *SNIIngress
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SNIIngress.
func (*SNIIngress) DeepCopyInto ¶ added in v1.13.0
func (in *SNIIngress) DeepCopyInto(out *SNIIngress)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SeedAPIServerNetworkPolicyControllerConfiguration ¶ added in v1.6.0
type SeedAPIServerNetworkPolicyControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on events. ConcurrentSyncs *int }
SeedAPIServerNetworkPolicyControllerConfiguration defines the configuration of the SeedAPIServerNetworkPolicy controller.
func (*SeedAPIServerNetworkPolicyControllerConfiguration) DeepCopy ¶ added in v1.6.0
func (in *SeedAPIServerNetworkPolicyControllerConfiguration) DeepCopy() *SeedAPIServerNetworkPolicyControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedAPIServerNetworkPolicyControllerConfiguration.
func (*SeedAPIServerNetworkPolicyControllerConfiguration) DeepCopyInto ¶ added in v1.6.0
func (in *SeedAPIServerNetworkPolicyControllerConfiguration) DeepCopyInto(out *SeedAPIServerNetworkPolicyControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SeedClientConnection ¶
type SeedClientConnection struct {
componentbaseconfig.ClientConnectionConfiguration
}
SeedClientConnection specifies the client connection settings for the proxy server to use when communicating with the seed apiserver.
func (*SeedClientConnection) DeepCopy ¶
func (in *SeedClientConnection) DeepCopy() *SeedClientConnection
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedClientConnection.
func (*SeedClientConnection) DeepCopyInto ¶
func (in *SeedClientConnection) DeepCopyInto(out *SeedClientConnection)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SeedConfig ¶
type SeedConfig struct {
gardencore.SeedTemplate
}
SeedConfig contains configuration for the seed cluster.
func (*SeedConfig) DeepCopy ¶
func (in *SeedConfig) DeepCopy() *SeedConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedConfig.
func (*SeedConfig) DeepCopyInto ¶
func (in *SeedConfig) DeepCopyInto(out *SeedConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SeedControllerConfiguration ¶
type SeedControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int // SyncPeriod is the duration how often the existing resources are reconciled. SyncPeriod *metav1.Duration }
SeedControllerConfiguration defines the configuration of the Seed controller.
func (*SeedControllerConfiguration) DeepCopy ¶
func (in *SeedControllerConfiguration) DeepCopy() *SeedControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SeedControllerConfiguration.
func (*SeedControllerConfiguration) DeepCopyInto ¶
func (in *SeedControllerConfiguration) DeepCopyInto(out *SeedControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Server ¶ added in v1.5.0
type Server struct { // BindAddress is the IP address on which to listen for the specified port. BindAddress string // Port is the port on which to serve unsecured, unauthenticated access. Port int }
Server contains information for HTTP(S) server configuration.
func (*Server) DeepCopy ¶ added in v1.5.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Server.
func (*Server) DeepCopyInto ¶ added in v1.5.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerConfiguration ¶ added in v1.5.0
type ServerConfiguration struct { // HTTPS is the configuration for the HTTPS server. HTTPS HTTPSServer }
ServerConfiguration contains details for the HTTP(S) servers.
func (*ServerConfiguration) DeepCopy ¶ added in v1.5.0
func (in *ServerConfiguration) DeepCopy() *ServerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerConfiguration.
func (*ServerConfiguration) DeepCopyInto ¶ added in v1.5.0
func (in *ServerConfiguration) DeepCopyInto(out *ServerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ShootCareControllerConfiguration ¶
type ShootCareControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int // SyncPeriod is the duration how often the existing resources are reconciled (how // often the health check of Shoot clusters is performed (only if no operation is // already running on them). SyncPeriod *metav1.Duration // StaleExtensionHealthChecks defines the configuration of the check for stale extension health checks. StaleExtensionHealthChecks *StaleExtensionHealthChecks // ConditionThresholds defines the condition threshold per condition type. ConditionThresholds []ConditionThreshold }
ShootCareControllerConfiguration defines the configuration of the ShootCare controller.
func (*ShootCareControllerConfiguration) DeepCopy ¶
func (in *ShootCareControllerConfiguration) DeepCopy() *ShootCareControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShootCareControllerConfiguration.
func (*ShootCareControllerConfiguration) DeepCopyInto ¶
func (in *ShootCareControllerConfiguration) DeepCopyInto(out *ShootCareControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ShootClientConnection ¶
type ShootClientConnection struct {
componentbaseconfig.ClientConnectionConfiguration
}
ShootClientConnection specifies the client connection settings for the proxy server to use when communicating with the shoot apiserver.
func (*ShootClientConnection) DeepCopy ¶
func (in *ShootClientConnection) DeepCopy() *ShootClientConnection
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShootClientConnection.
func (*ShootClientConnection) DeepCopyInto ¶
func (in *ShootClientConnection) DeepCopyInto(out *ShootClientConnection)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ShootControllerConfiguration ¶
type ShootControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int // ProgressReportPeriod is the period how often the progress of a shoot operation will be reported in the // Shoot's `.status.lastOperation` field. By default, the progress will be reported immediately after a task of the // respective flow has been completed. If you set this to a value > 0 (e.g., 5s) then it will be only reported every // 5 seconds. Any tasks that were completed in the meantime will not be reported. ProgressReportPeriod *metav1.Duration // ReconcileInMaintenanceOnly determines whether Shoot reconciliations happen only // during its maintenance time window. ReconcileInMaintenanceOnly *bool // RespectSyncPeriodOverwrite determines whether a sync period overwrite of a // Shoot (via annotation) is respected or not. Defaults to false. RespectSyncPeriodOverwrite *bool // RetryDuration is the maximum duration how often a reconciliation will be retried // in case of errors. RetryDuration *metav1.Duration // SyncPeriod is the duration how often the existing resources are reconciled. SyncPeriod *metav1.Duration // DNSEntryTTLSeconds is the TTL in seconds that is being used for DNS entries when reconciling shoots. // Default: 120s DNSEntryTTLSeconds *int64 }
ShootControllerConfiguration defines the configuration of the Shoot controller.
func (*ShootControllerConfiguration) DeepCopy ¶
func (in *ShootControllerConfiguration) DeepCopy() *ShootControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShootControllerConfiguration.
func (*ShootControllerConfiguration) DeepCopyInto ¶
func (in *ShootControllerConfiguration) DeepCopyInto(out *ShootControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ShootStateSyncControllerConfiguration ¶ added in v0.34.0
type ShootStateSyncControllerConfiguration struct { // ConcurrentSyncs is the number of workers used for the controller to work on // events. ConcurrentSyncs *int // SyncPeriod is the duration how often the existing extension resources are synced to the ShootState resource SyncPeriod *metav1.Duration }
ShootStateSyncControllerConfiguration defines the configuration of the ShootState Sync controller.
func (*ShootStateSyncControllerConfiguration) DeepCopy ¶ added in v0.34.0
func (in *ShootStateSyncControllerConfiguration) DeepCopy() *ShootStateSyncControllerConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShootStateSyncControllerConfiguration.
func (*ShootStateSyncControllerConfiguration) DeepCopyInto ¶ added in v0.34.0
func (in *ShootStateSyncControllerConfiguration) DeepCopyInto(out *ShootStateSyncControllerConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StaleExtensionHealthChecks ¶ added in v1.16.0
type StaleExtensionHealthChecks struct { // Enabled specifies whether the check for stale extensions health checks is enabled. // Defaults to true. Enabled bool // Threshold configures the threshold when gardenlet considers a health check report of an extension CRD as outdated. // The threshold should have some leeway in case a Gardener extension is temporarily unavailable. // Defaults to 5m. Threshold *metav1.Duration }
StaleExtensionHealthChecks defines the configuration of the check for stale extension health checks.
func (*StaleExtensionHealthChecks) DeepCopy ¶ added in v1.16.0
func (in *StaleExtensionHealthChecks) DeepCopy() *StaleExtensionHealthChecks
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StaleExtensionHealthChecks.
func (*StaleExtensionHealthChecks) DeepCopyInto ¶ added in v1.16.0
func (in *StaleExtensionHealthChecks) DeepCopyInto(out *StaleExtensionHealthChecks)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TLSServer ¶ added in v1.5.0
type TLSServer struct { // ServerCertPath is the path to the server certificate file. ServerCertPath string // ServerKeyPath is the path to the private key file. ServerKeyPath string }
TLSServer contains information about the TLS configuration for a HTTPS server.
func (*TLSServer) DeepCopy ¶ added in v1.5.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSServer.
func (*TLSServer) DeepCopyInto ¶ added in v1.5.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.