-
Notifications
You must be signed in to change notification settings - Fork 334
/
storage.go
239 lines (215 loc) · 8.71 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
/*
* 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.
*/
package storage
import (
"context"
"fmt"
apierrors "k8s.io/apimachinery/pkg/api/errors"
metainternal "k8s.io/apimachinery/pkg/apis/meta/internalversion"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
genericregistry "k8s.io/apiserver/pkg/registry/generic"
"k8s.io/apiserver/pkg/registry/generic/registry"
"k8s.io/apiserver/pkg/registry/rest"
"k8s.io/apiserver/pkg/storage"
storageerr "k8s.io/apiserver/pkg/storage/errors"
"k8s.io/apiserver/pkg/util/dryrun"
"tkestack.io/tke/api/authz"
platformversionedclient "tkestack.io/tke/api/client/clientset/versioned/typed/platform/v1"
apiserverutil "tkestack.io/tke/pkg/apiserver/util"
"tkestack.io/tke/pkg/authz/registry/multiclusterrolebinding"
"tkestack.io/tke/pkg/util/log"
)
// Storage includes storage for configmap and all sub resources.
type Storage struct {
MultiClusterRoleBinding *REST
Status *StatusREST
Finalize *FinalizeREST
}
// NewStorage returns a Storage object that will work against configmap.
func NewStorage(optsGetter genericregistry.RESTOptionsGetter, roleGetter rest.Getter, platformClient platformversionedclient.PlatformV1Interface) *Storage {
strategy := multiclusterrolebinding.NewStrategy(roleGetter, platformClient)
store := ®istry.Store{
NewFunc: func() runtime.Object { return &authz.MultiClusterRoleBinding{} },
NewListFunc: func() runtime.Object { return &authz.MultiClusterRoleBindingList{} },
DefaultQualifiedResource: authz.Resource("multiclusterrolebindings"),
CreateStrategy: strategy,
UpdateStrategy: strategy,
DeleteStrategy: strategy,
ShouldDeleteDuringUpdate: multiclusterrolebinding.ShouldDeleteDuringUpdate,
}
store.TableConvertor = rest.NewDefaultTableConvertor(store.DefaultQualifiedResource)
options := &genericregistry.StoreOptions{
RESTOptions: optsGetter,
}
if err := store.CompleteWithOptions(options); err != nil {
log.Panic("Failed to create configmap etcd rest storage", log.Err(err))
}
statusStore := *store
statusStore.UpdateStrategy = multiclusterrolebinding.NewStatusStrategy(strategy)
finalizeStore := *store
finalizeStore.UpdateStrategy = multiclusterrolebinding.NewFinalizerStrategy(strategy)
return &Storage{
MultiClusterRoleBinding: &REST{store},
Status: &StatusREST{&statusStore},
Finalize: &FinalizeREST{&finalizeStore},
}
}
// REST implements a RESTStorage for configmap against etcd.
type REST struct {
*registry.Store
}
var _ rest.ShortNamesProvider = &REST{}
var _ rest.Creater = &REST{}
var _ rest.ShortNamesProvider = &REST{}
var _ rest.Lister = &REST{}
var _ rest.Getter = &REST{}
var _ rest.Updater = &REST{}
var _ rest.CollectionDeleter = &REST{}
var _ rest.GracefulDeleter = &REST{}
// ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
func (r *REST) ShortNames() []string {
return []string{"mcrb"}
}
// List selects resources in the storage which match to the selector. 'options' can be nil.
func (r *REST) List(ctx context.Context, options *metainternal.ListOptions) (runtime.Object, error) {
return r.Store.List(ctx, options)
}
// Delete enforces life-cycle rules for policy termination
func (r *REST) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
object, err := r.Get(ctx, name, &metav1.GetOptions{})
if err != nil {
return nil, false, err
}
cpb := object.(*authz.MultiClusterRoleBinding)
// Ensure we have a UID precondition
if options == nil {
options = metav1.NewDeleteOptions(0)
}
if options.Preconditions == nil {
options.Preconditions = &metav1.Preconditions{}
}
if options.Preconditions.UID == nil {
options.Preconditions.UID = &cpb.UID
} else if *options.Preconditions.UID != cpb.UID {
err = apierrors.NewConflict(
authz.Resource("multiclusterrolebindings"),
name,
fmt.Errorf("precondition failed: UID in precondition: %v, UID in object meta: %v", *options.Preconditions.UID, cpb.UID),
)
return nil, false, err
}
// upon first request to delete, we switch the phase to start cpb termination
if cpb.DeletionTimestamp.IsZero() {
key, err := r.Store.KeyFunc(ctx, name)
if err != nil {
return nil, false, err
}
preconditions := storage.Preconditions{UID: options.Preconditions.UID}
out := r.Store.NewFunc()
err = r.Store.Storage.GuaranteedUpdate(
ctx, key, out, false, &preconditions,
storage.SimpleUpdate(func(existing runtime.Object) (runtime.Object, error) {
existingMultiClusterRoleBinding, ok := existing.(*authz.MultiClusterRoleBinding)
if !ok {
// wrong type
return nil, fmt.Errorf("expected *auth.MultiClusterRoleBinding, got %v", existing)
}
if err := deleteValidation(ctx, existingMultiClusterRoleBinding); err != nil {
return nil, err
}
// Set the deletion timestamp if needed
if existingMultiClusterRoleBinding.DeletionTimestamp.IsZero() {
now := metav1.Now()
existingMultiClusterRoleBinding.DeletionTimestamp = &now
}
// Set the cpb phase to terminating, if needed
if existingMultiClusterRoleBinding.Status.Phase != authz.BindingTerminating {
existingMultiClusterRoleBinding.Status.Phase = authz.BindingTerminating
}
// the current finalizers which are on namespace
currentFinalizers := map[string]bool{}
for _, f := range existingMultiClusterRoleBinding.Finalizers {
currentFinalizers[f] = true
}
// the finalizers we should ensure on rule
shouldHaveFinalizers := map[string]bool{
metav1.FinalizerOrphanDependents: apiserverutil.ShouldHaveOrphanFinalizer(options, currentFinalizers[metav1.FinalizerOrphanDependents]),
metav1.FinalizerDeleteDependents: apiserverutil.ShouldHaveDeleteDependentsFinalizer(options, currentFinalizers[metav1.FinalizerDeleteDependents]),
}
// determine whether there are changes
changeNeeded := false
for finalizer, shouldHave := range shouldHaveFinalizers {
changeNeeded = currentFinalizers[finalizer] != shouldHave || changeNeeded
if shouldHave {
currentFinalizers[finalizer] = true
} else {
delete(currentFinalizers, finalizer)
}
}
// make the changes if needed
if changeNeeded {
var newFinalizers []string
for f := range currentFinalizers {
newFinalizers = append(newFinalizers, f)
}
existingMultiClusterRoleBinding.Finalizers = newFinalizers
}
return existingMultiClusterRoleBinding, nil
}),
dryrun.IsDryRun(options.DryRun),
nil,
)
if err != nil {
err = storageerr.InterpretGetError(err, authz.Resource("multiclusterrolebindings"), name)
err = storageerr.InterpretUpdateError(err, authz.Resource("multiclusterrolebindings"), name)
if _, ok := err.(*apierrors.StatusError); !ok {
err = apierrors.NewInternalError(err)
}
return nil, false, err
}
return out, false, nil
}
// prior to final deletion, we must ensure that finalizers is empty
if len(cpb.Finalizers) != 0 {
err = apierrors.NewConflict(authz.Resource("multiclusterrolebindings"), cpb.Name, fmt.Errorf("the system is ensuring all content is removed from this cpb. Upon completion, this cpb will automatically be purged by the system"))
return nil, false, err
}
return r.Store.Delete(ctx, name, deleteValidation, options)
}
// StatusREST implements the GenericREST endpoint for changing the status of a policy request.
type StatusREST struct {
*registry.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()
}
// FinalizeREST implements Patcher.
var _ = rest.Patcher(&FinalizeREST{})
// FinalizeREST implements the REST endpoint for finalizing a policy.
type FinalizeREST struct {
*registry.Store
}
// New returns an empty object that can be used with Create and Update after
// request data has been put into it.
func (r *FinalizeREST) New() runtime.Object {
return r.Store.New()
}