Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
8a01aed8
Commit
8a01aed8
authored
Mar 30, 2015
by
Abhishek Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding validations for scheduler Policy
parent
9bbf0b15
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
99 additions
and
0 deletions
+99
-0
types.go
plugin/pkg/scheduler/api/types.go
+1
-0
types.go
plugin/pkg/scheduler/api/v1/types.go
+1
-0
validation.go
plugin/pkg/scheduler/api/validation/validation.go
+38
-0
validation_test.go
plugin/pkg/scheduler/api/validation/validation_test.go
+53
-0
factory.go
plugin/pkg/scheduler/factory/factory.go
+6
-0
No files found.
plugin/pkg/scheduler/api/types.go
View file @
8a01aed8
...
@@ -43,6 +43,7 @@ type PriorityPolicy struct {
...
@@ -43,6 +43,7 @@ type PriorityPolicy struct {
// For the Kubernetes provided priority functions, the name is the identifier of the pre-defined priority function
// For the Kubernetes provided priority functions, the name is the identifier of the pre-defined priority function
Name
string
`json:"name"`
Name
string
`json:"name"`
// The numeric multiplier for the minion scores that the priority function generates
// The numeric multiplier for the minion scores that the priority function generates
// The weight should be non-zero and can be a positive or a negative integer
Weight
int
`json:"weight"`
Weight
int
`json:"weight"`
// Holds the parameters to configure the given priority function
// Holds the parameters to configure the given priority function
Argument
*
PriorityArgument
`json:"argument"`
Argument
*
PriorityArgument
`json:"argument"`
...
...
plugin/pkg/scheduler/api/v1/types.go
View file @
8a01aed8
...
@@ -43,6 +43,7 @@ type PriorityPolicy struct {
...
@@ -43,6 +43,7 @@ type PriorityPolicy struct {
// For the Kubernetes provided priority functions, the name is the identifier of the pre-defined priority function
// For the Kubernetes provided priority functions, the name is the identifier of the pre-defined priority function
Name
string
`json:"name"`
Name
string
`json:"name"`
// The numeric multiplier for the minion scores that the priority function generates
// The numeric multiplier for the minion scores that the priority function generates
// The weight should be non-zero and can be a positive or a negative integer
Weight
int
`json:"weight"`
Weight
int
`json:"weight"`
// Holds the parameters to configure the given priority function
// Holds the parameters to configure the given priority function
Argument
*
PriorityArgument
`json:"argument"`
Argument
*
PriorityArgument
`json:"argument"`
...
...
plugin/pkg/scheduler/api/validation/validation.go
0 → 100644
View file @
8a01aed8
/*
Copyright 2015 Google Inc. All rights reserved.
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
validation
import
(
"fmt"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/errors"
schedulerapi
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/api"
)
// Validate checks for errors in the Config
// It does not return early so that it can find as many errors as possible
func
ValidatePolicy
(
policy
schedulerapi
.
Policy
)
error
{
validationErrors
:=
make
([]
error
,
0
)
for
_
,
priority
:=
range
policy
.
Priorities
{
if
priority
.
Weight
==
0
{
validationErrors
=
append
(
validationErrors
,
fmt
.
Errorf
(
"Priority %s should have a non-zero weight applied to it"
,
priority
.
Name
))
}
}
return
errors
.
NewAggregate
(
validationErrors
)
}
plugin/pkg/scheduler/api/validation/validation_test.go
0 → 100644
View file @
8a01aed8
/*
Copyright 2015 Google Inc. All rights reserved.
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
validation
import
(
"testing"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/api"
)
func
TestValidatePriorityWithNoWeight
(
t
*
testing
.
T
)
{
policy
:=
api
.
Policy
{
Priorities
:
[]
api
.
PriorityPolicy
{{
Name
:
"NoWeightPriority"
}}}
if
ValidatePolicy
(
policy
)
==
nil
{
t
.
Errorf
(
"Expected error about priority weight being zero"
)
}
}
func
TestValidatePriorityWithZeroWeight
(
t
*
testing
.
T
)
{
policy
:=
api
.
Policy
{
Priorities
:
[]
api
.
PriorityPolicy
{{
Name
:
"NoWeightPriority"
,
Weight
:
0
}}}
if
ValidatePolicy
(
policy
)
==
nil
{
t
.
Errorf
(
"Expected error about priority weight being zero"
)
}
}
func
TestValidatePriorityWithNonZeroWeight
(
t
*
testing
.
T
)
{
policy
:=
api
.
Policy
{
Priorities
:
[]
api
.
PriorityPolicy
{{
Name
:
"WeightPriority"
,
Weight
:
2
}}}
errs
:=
ValidatePolicy
(
policy
)
if
ValidatePolicy
(
policy
)
!=
nil
{
t
.
Errorf
(
"Unexpected errors %v"
,
errs
)
}
}
func
TestValidatePriorityWithNegativeWeight
(
t
*
testing
.
T
)
{
policy
:=
api
.
Policy
{
Priorities
:
[]
api
.
PriorityPolicy
{{
Name
:
"WeightPriority"
,
Weight
:
-
2
}}}
errs
:=
ValidatePolicy
(
policy
)
if
ValidatePolicy
(
policy
)
!=
nil
{
t
.
Errorf
(
"Unexpected errors %v"
,
errs
)
}
}
plugin/pkg/scheduler/factory/factory.go
View file @
8a01aed8
...
@@ -31,6 +31,7 @@ import (
...
@@ -31,6 +31,7 @@ import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler"
schedulerapi
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/api"
schedulerapi
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/api"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/api/validation"
"github.com/golang/glog"
"github.com/golang/glog"
)
)
...
@@ -87,6 +88,11 @@ func (f *ConfigFactory) CreateFromProvider(providerName string) (*scheduler.Conf
...
@@ -87,6 +88,11 @@ func (f *ConfigFactory) CreateFromProvider(providerName string) (*scheduler.Conf
func
(
f
*
ConfigFactory
)
CreateFromConfig
(
policy
schedulerapi
.
Policy
)
(
*
scheduler
.
Config
,
error
)
{
func
(
f
*
ConfigFactory
)
CreateFromConfig
(
policy
schedulerapi
.
Policy
)
(
*
scheduler
.
Config
,
error
)
{
glog
.
V
(
2
)
.
Infof
(
"creating scheduler from configuration: %v"
,
policy
)
glog
.
V
(
2
)
.
Infof
(
"creating scheduler from configuration: %v"
,
policy
)
// validate the policy configuration
if
err
:=
validation
.
ValidatePolicy
(
policy
);
err
!=
nil
{
return
nil
,
err
}
predicateKeys
:=
util
.
NewStringSet
()
predicateKeys
:=
util
.
NewStringSet
()
for
_
,
predicate
:=
range
policy
.
Predicates
{
for
_
,
predicate
:=
range
policy
.
Predicates
{
glog
.
V
(
2
)
.
Infof
(
"Registering predicate: %s"
,
predicate
.
Name
)
glog
.
V
(
2
)
.
Infof
(
"Registering predicate: %s"
,
predicate
.
Name
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment