mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 21:31:18 +01:00
107 lines
3.0 KiB
Go
107 lines
3.0 KiB
Go
/*
|
|
Copyright 2017 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 api
|
|
|
|
import (
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
|
|
|
type DeschedulerPolicy struct {
|
|
metav1.TypeMeta
|
|
|
|
// Profiles
|
|
Profiles []DeschedulerProfile
|
|
|
|
// NodeSelector for a set of nodes to operate over
|
|
NodeSelector *string
|
|
|
|
// MaxNoOfPodsToEvictPerNode restricts maximum of pods to be evicted per node.
|
|
MaxNoOfPodsToEvictPerNode *uint
|
|
|
|
// MaxNoOfPodsToEvictPerNamespace restricts maximum of pods to be evicted per namespace.
|
|
MaxNoOfPodsToEvictPerNamespace *uint
|
|
|
|
// MaxNoOfPodsToTotal restricts maximum of pods to be evicted total.
|
|
MaxNoOfPodsToEvictTotal *uint
|
|
|
|
// EvictionFailureEventNotification should be set to true to enable eviction failure event notification.
|
|
// Default is false.
|
|
EvictionFailureEventNotification *bool
|
|
|
|
// MetricsCollector configures collection of metrics about actual resource utilization
|
|
MetricsCollector MetricsCollector
|
|
|
|
// GracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer.
|
|
// The value zero indicates delete immediately. If this value is nil, the default grace period for the
|
|
// specified type will be used.
|
|
// Defaults to a per object value if not specified. zero means delete immediately.
|
|
GracePeriodSeconds *int64
|
|
}
|
|
|
|
// Namespaces carries a list of included/excluded namespaces
|
|
// for which a given strategy is applicable
|
|
type Namespaces struct {
|
|
Include []string `json:"include,omitempty"`
|
|
Exclude []string `json:"exclude,omitempty"`
|
|
}
|
|
|
|
type (
|
|
Percentage float64
|
|
ResourceThresholds map[v1.ResourceName]Percentage
|
|
)
|
|
|
|
type PriorityThreshold struct {
|
|
Value *int32 `json:"value"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type DeschedulerProfile struct {
|
|
Name string
|
|
PluginConfigs []PluginConfig
|
|
Plugins Plugins
|
|
}
|
|
|
|
type PluginConfig struct {
|
|
Name string
|
|
Args runtime.Object
|
|
}
|
|
|
|
type Plugins struct {
|
|
PreSort PluginSet
|
|
Sort PluginSet
|
|
Deschedule PluginSet
|
|
Balance PluginSet
|
|
Filter PluginSet
|
|
PreEvictionFilter PluginSet
|
|
}
|
|
|
|
type PluginSet struct {
|
|
Enabled []string
|
|
Disabled []string
|
|
}
|
|
|
|
// MetricsCollector configures collection of metrics about actual resource utilization
|
|
type MetricsCollector struct {
|
|
// Enabled metrics collection from kubernetes metrics.
|
|
// Later, the collection can be extended to other providers.
|
|
Enabled bool
|
|
}
|