46 lines
1.8 KiB
Go
46 lines
1.8 KiB
Go
package spreadconstraint
|
|
|
|
import (
|
|
"context"
|
|
|
|
clusterv1alpha1 "github.com/karmada-io/karmada/pkg/apis/cluster/v1alpha1"
|
|
policyv1alpha1 "github.com/karmada-io/karmada/pkg/apis/policy/v1alpha1"
|
|
workv1alpha2 "github.com/karmada-io/karmada/pkg/apis/work/v1alpha2"
|
|
"github.com/karmada-io/karmada/pkg/scheduler/framework"
|
|
)
|
|
|
|
const (
|
|
// Name is the name of the plugin used in the plugin registry and configurations.
|
|
Name = "SpreadConstraint"
|
|
)
|
|
|
|
// SpreadConstraint is a plugin that checks if spread property in the Cluster.Spec.
|
|
type SpreadConstraint struct{}
|
|
|
|
var _ framework.FilterPlugin = &SpreadConstraint{}
|
|
|
|
// New instantiates the spreadconstraint plugin.
|
|
func New() (framework.Plugin, error) {
|
|
return &SpreadConstraint{}, nil
|
|
}
|
|
|
|
// Name returns the plugin name.
|
|
func (p *SpreadConstraint) Name() string {
|
|
return Name
|
|
}
|
|
|
|
// Filter checks if the cluster Provider/Zone/Region spread is null.
|
|
func (p *SpreadConstraint) Filter(ctx context.Context, placement *policyv1alpha1.Placement, resource *workv1alpha2.ObjectReference, cluster *clusterv1alpha1.Cluster) *framework.Result {
|
|
for _, spreadConstraint := range placement.SpreadConstraints {
|
|
if spreadConstraint.SpreadByField == policyv1alpha1.SpreadByFieldProvider && cluster.Spec.Provider == "" {
|
|
return framework.NewResult(framework.Unschedulable, "No Provider Property in the Cluster.Spec")
|
|
} else if spreadConstraint.SpreadByField == policyv1alpha1.SpreadByFieldRegion && cluster.Spec.Region == "" {
|
|
return framework.NewResult(framework.Unschedulable, "No Region Property in the Cluster.Spec")
|
|
} else if spreadConstraint.SpreadByField == policyv1alpha1.SpreadByFieldZone && cluster.Spec.Zone == "" {
|
|
return framework.NewResult(framework.Unschedulable, "No Zone Property in the Cluster.Spec")
|
|
}
|
|
}
|
|
|
|
return framework.NewResult(framework.Success)
|
|
}
|