-
Notifications
You must be signed in to change notification settings - Fork 334
/
storage.go
277 lines (241 loc) · 8.61 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
* Tencent is pleased to support the open source community by making TKEStack
* available.
*
* Copyright (C) 2012-2019 Tencent. 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
*
* https://opensource.org/licenses/Apache-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 OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
// If you make changes to this file, you should also make the corresponding change in ReplicationController.
package storage
import (
"context"
"tkestack.io/tke/pkg/platform/proxy"
appsv1 "k8s.io/api/apps/v1"
appsv1beta1 "k8s.io/api/apps/v1beta1"
appsv1beta2 "k8s.io/api/apps/v1beta2"
autoscalingv1 "k8s.io/api/autoscaling/v1"
extensionsv1beta1 "k8s.io/api/extensions/v1beta1"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/types"
genericregistry "k8s.io/apiserver/pkg/registry/generic"
"k8s.io/apiserver/pkg/registry/rest"
platforminternalclient "tkestack.io/tke/api/client/clientset/internalversion/typed/platform/internalversion"
"tkestack.io/tke/pkg/platform/apiserver/filter"
)
// Storage includes storage for resources.
type Storage struct {
ReplicaSet *REST
Status *StatusREST
Pods *PodREST
Scale *ScaleREST
Events *EventREST
}
// REST implements pkg/api/rest.StandardStorage
type REST struct {
*proxy.Store
}
// NewStorageV1 returns a Storage object that will work against resources.
func NewStorageV1(_ genericregistry.RESTOptionsGetter, platformClient platforminternalclient.PlatformInterface) *Storage {
replicaSetStore := &proxy.Store{
NewFunc: func() runtime.Object { return &appsv1.ReplicaSet{} },
NewListFunc: func() runtime.Object { return &appsv1.ReplicaSetList{} },
Namespaced: true,
PlatformClient: platformClient,
}
statusStore := *replicaSetStore
return &Storage{
ReplicaSet: &REST{replicaSetStore},
Status: &StatusREST{
store: &statusStore,
},
Scale: &ScaleREST{
platformClient: platformClient,
},
Pods: &PodREST{
platformClient: platformClient,
},
Events: &EventREST{
platformClient: platformClient,
},
}
}
// NewStorageV1Beta2 returns a Storage object that will work against resources.
func NewStorageV1Beta2(_ genericregistry.RESTOptionsGetter, platformClient platforminternalclient.PlatformInterface) *Storage {
replicaSetStore := &proxy.Store{
NewFunc: func() runtime.Object { return &appsv1beta2.ReplicaSet{} },
NewListFunc: func() runtime.Object { return &appsv1beta2.ReplicaSetList{} },
Namespaced: true,
PlatformClient: platformClient,
}
statusStore := *replicaSetStore
return &Storage{
ReplicaSet: &REST{replicaSetStore},
Status: &StatusREST{
store: &statusStore,
},
Scale: &ScaleREST{
platformClient: platformClient,
},
Events: &EventREST{
platformClient: platformClient,
},
}
}
// NewStorageExtensionsV1Beta1 returns a Storage object that will work against resources.
func NewStorageExtensionsV1Beta1(_ genericregistry.RESTOptionsGetter, platformClient platforminternalclient.PlatformInterface) *Storage {
replicaSetStore := &proxy.Store{
NewFunc: func() runtime.Object { return &extensionsv1beta1.ReplicaSet{} },
NewListFunc: func() runtime.Object { return &extensionsv1beta1.ReplicaSetList{} },
Namespaced: true,
PlatformClient: platformClient,
}
statusStore := *replicaSetStore
return &Storage{
ReplicaSet: &REST{replicaSetStore},
Status: &StatusREST{
store: &statusStore,
},
Scale: &ScaleREST{
platformClient: platformClient,
},
Pods: &PodREST{
platformClient: platformClient,
},
Events: &EventREST{
platformClient: platformClient,
},
}
}
// Implement ShortNamesProvider
var _ rest.ShortNamesProvider = &REST{}
// ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
func (r *REST) ShortNames() []string {
return []string{"rs"}
}
// Implement CategoriesProvider
var _ rest.CategoriesProvider = &REST{}
// Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
func (r *REST) Categories() []string {
return []string{"all"}
}
// StatusREST implements the REST endpoint for changing the status of a replication controller
type StatusREST struct {
rest.Storage
store *proxy.Store
}
// StatusREST implements Patcher
var _ = rest.Patcher(&StatusREST{})
// New returns an empty object that can be used with Create and Update after
// request data has been put into it.
func (r *StatusREST) New() runtime.Object {
return r.store.New()
}
// 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) {
// We are explicitly setting forceAllowCreate to false in the call to the underlying storage because
// subresources should never allow create on update.
return r.store.Update(ctx, name, objInfo, createValidation, updateValidation, false, options)
}
// ScaleREST implements the REST endpoint for scale the replicaset.
type ScaleREST struct {
rest.Storage
platformClient platforminternalclient.PlatformInterface
}
// ScaleREST implements Patcher
var _ = rest.Patcher(&ScaleREST{})
var _ = rest.GroupVersionKindProvider(&ScaleREST{})
// GroupVersionKind is used to specify a particular GroupVersionKind to discovery.
func (r *ScaleREST) GroupVersionKind(containingGV schema.GroupVersion) schema.GroupVersionKind {
switch containingGV {
case appsv1beta1.SchemeGroupVersion:
return appsv1beta1.SchemeGroupVersion.WithKind("Scale")
case appsv1beta2.SchemeGroupVersion:
return appsv1beta2.SchemeGroupVersion.WithKind("Scale")
default:
return autoscalingv1.SchemeGroupVersion.WithKind("Scale")
}
}
// New creates a new Scale object
func (r *ScaleREST) New() runtime.Object {
return &autoscalingv1.Scale{}
}
// Get finds a resource in the storage by name and returns it.
func (r *ScaleREST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
client, requestInfo, err := proxy.RESTClient(ctx, r.platformClient)
if err != nil {
return nil, err
}
result := &autoscalingv1.Scale{}
if err := client.
Get().
NamespaceIfScoped(requestInfo.Namespace, requestInfo.Namespace != "").
Resource(requestInfo.Resource).
SubResource(requestInfo.Subresource).
Name(name).
VersionedParams(options, metav1.ParameterCodec).
Do(ctx).
Into(result); err != nil {
return nil, err
}
return result, nil
}
// Update finds a resource in the storage and updates it.
func (r *ScaleREST) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error) {
client, requestInfo, err := proxy.RESTClient(ctx, r.platformClient)
if err != nil {
return nil, false, err
}
if requestInfo.Verb == "patch" {
requestBody, ok := filter.RequestBodyFrom(ctx)
if !ok {
return nil, false, errors.NewBadRequest("request body is required")
}
result := &autoscalingv1.Scale{}
if err := client.
Patch(types.PatchType(requestBody.ContentType)).
NamespaceIfScoped(requestInfo.Namespace, requestInfo.Namespace != "").
Resource(requestInfo.Resource).
SubResource(requestInfo.Subresource).
Name(name).
Body(requestBody.Data).
Do(ctx).
Into(result); err != nil {
return nil, false, err
}
return result, true, nil
}
obj, err := objInfo.UpdatedObject(ctx, nil)
if err != nil {
return nil, false, errors.NewInternalError(err)
}
result := &autoscalingv1.Scale{}
if err := client.
Put().
NamespaceIfScoped(requestInfo.Namespace, requestInfo.Namespace != "").
Resource(requestInfo.Resource).
SubResource(requestInfo.Subresource).
Name(name).
Body(obj).
Do(ctx).
Into(result); err != nil {
return nil, false, err
}
return result, true, nil
}