Documentation
¶
Index ¶
- Constants
- Variables
- func New(args runtime.Object, handle frameworktypes.Handle) (frameworktypes.Plugin, error)
- func RegisterDefaults(scheme *runtime.Scheme) error
- func SetDefaults_RemovePodsHavingTooManyRestartsArgs(obj runtime.Object)
- func ValidateRemovePodsHavingTooManyRestartsArgs(obj runtime.Object) error
- type RemovePodsHavingTooManyRestarts
- type RemovePodsHavingTooManyRestartsArgs
Constants ¶
const PluginName = "RemovePodsHavingTooManyRestarts"
Variables ¶
var ( SchemeBuilder = runtime.NewSchemeBuilder() AddToScheme = localSchemeBuilder.AddToScheme )
Functions ¶
func New ¶
func New(args runtime.Object, handle frameworktypes.Handle) (frameworktypes.Plugin, error)
New builds plugin from its arguments while passing a handle
func RegisterDefaults ¶ added in v0.26.0
RegisterDefaults adds defaulters functions to the given scheme. Public to allow building arbitrary schemes. All generated defaulters are covering - they call all nested defaulters.
func SetDefaults_RemovePodsHavingTooManyRestartsArgs ¶ added in v0.26.0
SetDefaults_RemovePodsHavingTooManyRestartsArgs TODO: the final default values would be discussed in community
func ValidateRemovePodsHavingTooManyRestartsArgs ¶ added in v0.26.0
ValidateRemovePodsHavingTooManyRestartsArgs validates RemovePodsHavingTooManyRestarts arguments
Types ¶
type RemovePodsHavingTooManyRestarts ¶
type RemovePodsHavingTooManyRestarts struct {
// contains filtered or unexported fields
}
RemovePodsHavingTooManyRestarts removes the pods that have too many restarts on node. There are too many cases leading this issue: Volume mount failed, app error due to nodes' different settings. As of now, this strategy won't evict daemonsets, mirror pods, critical pods and pods with local storages.
func (*RemovePodsHavingTooManyRestarts) Deschedule ¶
func (d *RemovePodsHavingTooManyRestarts) Deschedule(ctx context.Context, nodes []*v1.Node) *frameworktypes.Status
Deschedule extension point implementation for the plugin
func (*RemovePodsHavingTooManyRestarts) Name ¶
func (d *RemovePodsHavingTooManyRestarts) Name() string
Name retrieves the plugin name
type RemovePodsHavingTooManyRestartsArgs ¶ added in v0.26.0
type RemovePodsHavingTooManyRestartsArgs struct { metav1.TypeMeta `json:",inline"` Namespaces *api.Namespaces `json:"namespaces,omitempty"` LabelSelector *metav1.LabelSelector `json:"labelSelector,omitempty"` PodRestartThreshold int32 `json:"podRestartThreshold,omitempty"` IncludingInitContainers bool `json:"includingInitContainers,omitempty"` States []string `json:"states,omitempty"` }
RemovePodsHavingTooManyRestartsArgs holds arguments used to configure RemovePodsHavingTooManyRestarts plugin.
func (*RemovePodsHavingTooManyRestartsArgs) DeepCopy ¶ added in v0.26.0
func (in *RemovePodsHavingTooManyRestartsArgs) DeepCopy() *RemovePodsHavingTooManyRestartsArgs
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RemovePodsHavingTooManyRestartsArgs.
func (*RemovePodsHavingTooManyRestartsArgs) DeepCopyInto ¶ added in v0.26.0
func (in *RemovePodsHavingTooManyRestartsArgs) DeepCopyInto(out *RemovePodsHavingTooManyRestartsArgs)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RemovePodsHavingTooManyRestartsArgs) DeepCopyObject ¶ added in v0.26.0
func (in *RemovePodsHavingTooManyRestartsArgs) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.