forked from projectcalico/calico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strategy.go
89 lines (70 loc) · 2.51 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
// Copyright (c) 2022 Tigera, Inc. All rights reserved.
package ipamconfig
import (
"context"
"fmt"
"reflect"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/util/validation/field"
"k8s.io/apiserver/pkg/registry/generic"
"k8s.io/apiserver/pkg/storage"
"k8s.io/apiserver/pkg/storage/names"
calico "github.com/projectcalico/api/pkg/apis/projectcalico/v3"
)
type apiServerStrategy struct {
runtime.ObjectTyper
names.NameGenerator
}
// NewStrategy returns a new NamespaceScopedStrategy for instances
func NewStrategy(typer runtime.ObjectTyper) apiServerStrategy {
return apiServerStrategy{typer, names.SimpleNameGenerator}
}
func (apiServerStrategy) NamespaceScoped() bool {
return false
}
func (apiServerStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
}
func (apiServerStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
}
func (apiServerStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
return field.ErrorList{}
}
func (apiServerStrategy) AllowCreateOnUpdate() bool {
return false
}
func (apiServerStrategy) AllowUnconditionalUpdate() bool {
return false
}
func (apiServerStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
return []string{}
}
func (apiServerStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
return []string{}
}
func (apiServerStrategy) Canonicalize(obj runtime.Object) {
}
func (apiServerStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
return field.ErrorList{}
}
func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
apiserver, ok := obj.(*calico.IPAMConfiguration)
if !ok {
return nil, nil, fmt.Errorf("given object (type %v) is not a Cluster Information", reflect.TypeOf(obj))
}
return labels.Set(apiserver.ObjectMeta.Labels), IPAMConfigurationToSelectableFields(apiserver), nil
}
// MatchIPAMConfiguration is the event filter used by clients of the apiserver only interested in
// specific labels/fields.
func MatchIPAMConfiguration(label labels.Selector, field fields.Selector) storage.SelectionPredicate {
return storage.SelectionPredicate{
Label: label,
Field: field,
GetAttrs: GetAttrs,
}
}
// IPAMConfigurationToSelectableFields returns a field set that represents the object.
func IPAMConfigurationToSelectableFields(obj *calico.IPAMConfiguration) fields.Set {
return generic.ObjectMetaFieldsSet(&obj.ObjectMeta, false)
}