forked from projectcalico/calico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
storage.go
127 lines (108 loc) · 4.19 KB
/
storage.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright (c) 2021 Tigera, 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 kubecontrollersconfig
import (
"context"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
"k8s.io/apiserver/pkg/registry/generic/registry"
genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
"k8s.io/apiserver/pkg/registry/rest"
calico "github.com/projectcalico/api/pkg/apis/projectcalico/v3"
"github.com/dtest11/calico/apiserver/pkg/registry/projectcalico/server"
)
// rest implements a RESTStorage for API services against etcd
type REST struct {
*genericregistry.Store
}
// EmptyObject returns an empty instance
func EmptyObject() runtime.Object {
return &calico.KubeControllersConfiguration{}
}
// NewList returns a new shell of a binding list
func NewList() runtime.Object {
return &calico.KubeControllersConfigurationList{}
}
// StatusREST implements the REST endpoint for changing the status of a deployment
type StatusREST struct {
store *genericregistry.Store
}
func (r *StatusREST) New() runtime.Object {
return &calico.KubeControllersConfiguration{}
}
func (r *StatusREST) Destroy() {
r.store.Destroy()
}
// Get retrieves the object from the storage. It is required to support Patch.
func (r *StatusREST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
return r.store.Get(ctx, name, options)
}
// Update alters the status subset of an object.
func (r *StatusREST) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc,
updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error) {
return r.store.Update(ctx, name, objInfo, createValidation, updateValidation, forceAllowCreate, options)
}
// NewREST returns a RESTStorage object that will work against API services.
func NewREST(scheme *runtime.Scheme, opts server.Options) (*REST, *StatusREST, error) {
strategy := NewStrategy(scheme)
prefix := "/" + opts.ResourcePrefix()
// We adapt the store's keyFunc so that we can use it with the StorageDecorator
// without making any assumptions about where objects are stored in etcd
keyFunc := func(obj runtime.Object) (string, error) {
accessor, err := meta.Accessor(obj)
if err != nil {
return "", err
}
return registry.NoNamespaceKeyFunc(
genericapirequest.NewContext(),
prefix,
accessor.GetName(),
)
}
storageInterface, dFunc, err := opts.GetStorage(
prefix,
keyFunc,
strategy,
func() runtime.Object { return &calico.KubeControllersConfiguration{} },
func() runtime.Object { return &calico.KubeControllersConfigurationList{} },
GetAttrs,
nil,
nil,
)
if err != nil {
return nil, nil, err
}
store := &genericregistry.Store{
NewFunc: func() runtime.Object { return &calico.KubeControllersConfiguration{} },
NewListFunc: func() runtime.Object { return &calico.KubeControllersConfigurationList{} },
KeyRootFunc: opts.KeyRootFunc(false),
KeyFunc: opts.KeyFunc(false),
ObjectNameFunc: func(obj runtime.Object) (string, error) {
return obj.(*calico.KubeControllersConfiguration).Name, nil
},
PredicateFunc: Match,
DefaultQualifiedResource: calico.Resource("kubecontrollersconfigurations"),
CreateStrategy: strategy,
UpdateStrategy: strategy,
DeleteStrategy: strategy,
EnableGarbageCollection: true,
Storage: storageInterface,
DestroyFunc: dFunc,
}
statusStore := *store
statusStore.UpdateStrategy = NewStatusStrategy(strategy)
return &REST{store}, &StatusREST{&statusStore}, nil
}