-
Notifications
You must be signed in to change notification settings - Fork 0
/
strategy.go
90 lines (72 loc) · 2.67 KB
/
strategy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package clusternetwork
import (
"fmt"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
apirequest "k8s.io/apiserver/pkg/endpoints/request"
"k8s.io/apiserver/pkg/registry/rest"
"k8s.io/apiserver/pkg/storage"
kapi "k8s.io/kubernetes/pkg/api"
sdnapi "github.com/openshift/origin/pkg/sdn/apis/network"
"github.com/openshift/origin/pkg/sdn/apis/network/validation"
)
// sdnStrategy implements behavior for ClusterNetworks
type sdnStrategy struct {
runtime.ObjectTyper
}
// Strategy is the default logic that applies when creating and updating ClusterNetwork
// objects via the REST API.
var Strategy = sdnStrategy{kapi.Scheme}
func (sdnStrategy) DefaultGarbageCollectionPolicy() rest.GarbageCollectionPolicy {
return rest.Unsupported
}
func (sdnStrategy) PrepareForUpdate(ctx apirequest.Context, obj, old runtime.Object) {}
// NamespaceScoped is false for sdns
func (sdnStrategy) NamespaceScoped() bool {
return false
}
func (sdnStrategy) GenerateName(base string) string {
return base
}
func (sdnStrategy) PrepareForCreate(ctx apirequest.Context, obj runtime.Object) {
}
// Canonicalize normalizes the object after validation.
func (sdnStrategy) Canonicalize(obj runtime.Object) {
}
// Validate validates a new sdn
func (sdnStrategy) Validate(ctx apirequest.Context, obj runtime.Object) field.ErrorList {
return validation.ValidateClusterNetwork(obj.(*sdnapi.ClusterNetwork))
}
// AllowCreateOnUpdate is false for sdn
func (sdnStrategy) AllowCreateOnUpdate() bool {
return false
}
func (sdnStrategy) AllowUnconditionalUpdate() bool {
return false
}
// ValidateUpdate is the default update validation for a ClusterNetwork
func (sdnStrategy) ValidateUpdate(ctx apirequest.Context, obj, old runtime.Object) field.ErrorList {
return validation.ValidateClusterNetworkUpdate(obj.(*sdnapi.ClusterNetwork), old.(*sdnapi.ClusterNetwork))
}
// GetAttrs returns labels and fields of a given object for filtering purposes
func GetAttrs(o runtime.Object) (labels.Set, fields.Set, error) {
obj, ok := o.(*sdnapi.ClusterNetwork)
if !ok {
return nil, nil, fmt.Errorf("not a ClusterNetwork")
}
return labels.Set(obj.Labels), SelectableFields(obj), nil
}
// Matcher returns a generic matcher for a given label and field selector.
func Matcher(label labels.Selector, field fields.Selector) storage.SelectionPredicate {
return storage.SelectionPredicate{
Label: label,
Field: field,
GetAttrs: GetAttrs,
}
}
// SelectableFields returns a field set that can be used for filter selection
func SelectableFields(obj *sdnapi.ClusterNetwork) fields.Set {
return sdnapi.ClusterNetworkToSelectableFields(obj)
}