-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource_quota_sync.go
516 lines (455 loc) · 14 KB
/
resource_quota_sync.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
package resourcequota
import (
"encoding/json"
"fmt"
"reflect"
"time"
"k8s.io/apimachinery/pkg/runtime"
"github.com/mitchellh/mapstructure"
"github.com/rancher/norman/types/convert"
namespaceutil "github.com/rancher/rancher/pkg/namespace"
validate "github.com/rancher/rancher/pkg/resourcequota"
v1 "github.com/rancher/types/apis/core/v1"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/sirupsen/logrus"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
clientcache "k8s.io/client-go/tools/cache"
)
const (
projectIDAnnotation = "field.cattle.io/projectId"
resourceQuotaLabel = "resourcequota.management.cattle.io/default-resource-quota"
resourceQuotaAnnotation = "field.cattle.io/resourceQuota"
limitRangeAnnotation = "field.cattle.io/containerDefaultResourceLimit"
ResourceQuotaValidatedCondition = "ResourceQuotaValidated"
ResourceQuotaInitCondition = "ResourceQuotaInit"
)
/*
SyncController takes care of creating Kubernetes resource quota based on the resource limits
defined in namespace.resourceQuota
*/
type SyncController struct {
ProjectLister v3.ProjectLister
Namespaces v1.NamespaceInterface
NamespaceLister v1.NamespaceLister
ResourceQuotas v1.ResourceQuotaInterface
ResourceQuotaLister v1.ResourceQuotaLister
LimitRange v1.LimitRangeInterface
LimitRangeLister v1.LimitRangeLister
NsIndexer clientcache.Indexer
}
func (c *SyncController) syncResourceQuota(key string, ns *corev1.Namespace) (runtime.Object, error) {
if ns == nil || ns.DeletionTimestamp != nil {
return nil, nil
}
_, err := c.CreateResourceQuota(ns)
if err != nil {
return nil, err
}
return nil, c.createLimitRange(ns)
}
func (c *SyncController) createLimitRange(ns *corev1.Namespace) error {
existing, err := c.getExistingLimitRange(ns)
if err != nil {
return err
}
limitRangeSpec, err := c.getResourceLimitToUpdate(ns)
if err != nil {
return err
}
operation := "none"
if existing == nil {
if limitRangeSpec != nil {
operation = "create"
}
} else {
if limitRangeSpec == nil {
operation = "delete"
} else if limitsChanged(existing.Spec.Limits, limitRangeSpec.Limits) {
operation = "update"
}
}
switch operation {
case "create":
return c.createDefaultLimitRange(ns, limitRangeSpec)
case "update":
return c.updateDefaultLimitRange(existing, limitRangeSpec)
case "delete":
return c.deleteDefaultLimitRange(existing)
}
return nil
}
func limitsChanged(existing []corev1.LimitRangeItem, toUpdate []corev1.LimitRangeItem) bool {
if len(existing) != len(toUpdate) {
return true
}
if len(existing) == 0 || len(toUpdate) == 0 {
return true
}
if !reflect.DeepEqual(existing[0].DefaultRequest, toUpdate[0].DefaultRequest) {
return true
}
if !reflect.DeepEqual(existing[0].Default, toUpdate[0].Default) {
return true
}
return false
}
func (c *SyncController) CreateResourceQuota(ns *corev1.Namespace) (runtime.Object, error) {
existing, err := c.getExistingResourceQuota(ns)
if err != nil {
return ns, err
}
projectLimit, _, err := getProjectResourceQuotaLimit(ns, c.ProjectLister)
if err != nil {
return ns, err
}
var quotaSpec *corev1.ResourceQuotaSpec
if projectLimit != nil {
quotaSpec, err = c.getNamespaceResourceQuota(ns)
if err != nil {
return ns, err
}
}
quotaToUpdate, err := c.getResourceQuotaToUpdate(ns)
if err != nil {
return ns, err
}
operation := "none"
if existing == nil {
if quotaSpec != nil {
operation = "create"
}
} else {
if quotaSpec == nil {
operation = "delete"
} else if quotaToUpdate != "" || !reflect.DeepEqual(existing.Spec.Hard, quotaSpec.Hard) {
operation = "update"
}
}
var updated *corev1.Namespace
var isFit bool
switch operation {
case "create":
isFit, updated, err = c.validateAndSetNamespaceQuota(ns, quotaToUpdate)
if err != nil {
return updated, err
}
if !isFit {
// create default "all 0" resource quota
quotaSpec, err = getDefaultQuotaSpec()
if err != nil {
return updated, err
}
}
err = c.createDefaultResourceQuota(ns, quotaSpec)
case "update":
isFit, updated, err = c.validateAndSetNamespaceQuota(ns, quotaToUpdate)
if err != nil || !isFit {
return updated, err
}
err = c.updateResourceQuota(existing, quotaSpec)
case "delete":
err = c.deleteResourceQuota(existing)
}
if updated == nil {
updated = ns
}
if err != nil {
return updated, err
}
set, err := namespaceutil.IsNamespaceConditionSet(ns, ResourceQuotaInitCondition, true)
if err != nil || set {
return updated, err
}
toUpdate := updated.DeepCopy()
namespaceutil.SetNamespaceCondition(toUpdate, time.Second*1, ResourceQuotaInitCondition, true, "")
return c.Namespaces.Update(toUpdate)
}
func (c *SyncController) updateResourceQuota(quota *corev1.ResourceQuota, spec *corev1.ResourceQuotaSpec) error {
toUpdate := quota.DeepCopy()
toUpdate.Spec = *spec
logrus.Infof("Updating default resource quota for namespace %v", toUpdate.Namespace)
_, err := c.ResourceQuotas.Update(toUpdate)
return err
}
func (c *SyncController) updateDefaultLimitRange(limitRange *corev1.LimitRange, spec *corev1.LimitRangeSpec) error {
toUpdate := limitRange.DeepCopy()
toUpdate.Spec = *spec
logrus.Infof("Updating default limit range for namespace %v", toUpdate.Namespace)
_, err := c.LimitRange.Update(toUpdate)
return err
}
func (c *SyncController) deleteResourceQuota(quota *corev1.ResourceQuota) error {
logrus.Infof("Deleting default resource quota for namespace %v", quota.Namespace)
return c.ResourceQuotas.DeleteNamespaced(quota.Namespace, quota.Name, &metav1.DeleteOptions{})
}
func (c *SyncController) deleteDefaultLimitRange(limitRange *corev1.LimitRange) error {
logrus.Infof("Deleting limit range %v for namespace %v", limitRange.Name, limitRange.Namespace)
return c.LimitRange.DeleteNamespaced(limitRange.Namespace, limitRange.Name, &metav1.DeleteOptions{})
}
func (c *SyncController) getExistingResourceQuota(ns *corev1.Namespace) (*corev1.ResourceQuota, error) {
set := labels.Set(map[string]string{resourceQuotaLabel: "true"})
quota, err := c.ResourceQuotaLister.List(ns.Name, set.AsSelector())
if err != nil {
return nil, err
}
if len(quota) == 0 {
return nil, nil
}
return quota[0], nil
}
func (c *SyncController) getExistingLimitRange(ns *corev1.Namespace) (*corev1.LimitRange, error) {
set := labels.Set(map[string]string{resourceQuotaLabel: "true"})
limitRanger, err := c.LimitRangeLister.List(ns.Name, set.AsSelector())
if err != nil {
return nil, err
}
if len(limitRanger) == 0 {
return nil, nil
}
return limitRanger[0], nil
}
func (c *SyncController) getNamespaceResourceQuota(ns *corev1.Namespace) (*corev1.ResourceQuotaSpec, error) {
limit, err := getNamespaceResourceQuotaLimit(ns)
if err != nil {
return nil, err
}
if limit == nil {
limit = defaultResourceLimit
}
return convertResourceLimitResourceQuotaSpec(limit)
}
func getDefaultQuotaSpec() (*corev1.ResourceQuotaSpec, error) {
return convertResourceLimitResourceQuotaSpec(defaultResourceLimit)
}
var defaultResourceLimit = &v3.ResourceQuotaLimit{
Pods: "0",
Services: "0",
ReplicationControllers: "0",
Secrets: "0",
ConfigMaps: "0",
PersistentVolumeClaims: "0",
ServicesNodePorts: "0",
ServicesLoadBalancers: "0",
RequestsCPU: "0",
RequestsMemory: "0",
RequestsStorage: "0",
LimitsCPU: "0",
LimitsMemory: "0",
}
func (c *SyncController) createDefaultResourceQuota(ns *corev1.Namespace, spec *corev1.ResourceQuotaSpec) error {
resourceQuota := &corev1.ResourceQuota{
ObjectMeta: metav1.ObjectMeta{
GenerateName: "default-",
Namespace: ns.Name,
Labels: map[string]string{resourceQuotaLabel: "true"},
},
Spec: *spec,
}
logrus.Infof("Creating default resource quota for namespace %v", ns.Name)
_, err := c.ResourceQuotas.Create(resourceQuota)
return err
}
func (c *SyncController) createDefaultLimitRange(ns *corev1.Namespace, spec *corev1.LimitRangeSpec) error {
limitRange := &corev1.LimitRange{
ObjectMeta: metav1.ObjectMeta{
GenerateName: "default-",
Namespace: ns.Name,
Labels: map[string]string{resourceQuotaLabel: "true"},
},
Spec: *spec,
}
logrus.Infof("Creating limit range %v for namespace %v", limitRange.Spec, ns.Name)
_, err := c.LimitRange.Create(limitRange)
return err
}
func (c *SyncController) validateAndSetNamespaceQuota(ns *corev1.Namespace, quotaToUpdate string) (bool, *corev1.Namespace, error) {
if ns == nil || ns.DeletionTimestamp != nil {
return true, ns, nil
}
// get project limit
projectLimit, projectID, err := getProjectResourceQuotaLimit(ns, c.ProjectLister)
if err != nil {
return false, ns, err
}
if projectLimit == nil {
return true, ns, err
}
updatedNs := ns.DeepCopy()
if quotaToUpdate != "" {
if updatedNs.Annotations == nil {
updatedNs.Annotations = map[string]string{}
}
updatedNs.Annotations[resourceQuotaAnnotation] = quotaToUpdate
updatedNs, err = c.Namespaces.Update(updatedNs)
if err != nil {
return false, updatedNs, err
}
}
// validate resource quota
mu := validate.GetProjectLock(projectID)
mu.Lock()
defer mu.Unlock()
// get other Namespaces
objects, err := c.NsIndexer.ByIndex(nsByProjectIndex, projectID)
if err != nil {
return false, updatedNs, err
}
var nsLimits []*v3.ResourceQuotaLimit
for _, o := range objects {
other := o.(*corev1.Namespace)
// skip itself
if other.Name == ns.Name {
continue
}
nsLimit, err := getNamespaceResourceQuotaLimit(other)
if err != nil {
return false, updatedNs, err
}
nsLimits = append(nsLimits, nsLimit)
}
nsLimit, err := getNamespaceResourceQuotaLimit(updatedNs)
if err != nil {
return false, updatedNs, err
}
isFit, msg, err := validate.IsQuotaFit(nsLimit, nsLimits, projectLimit)
if err != nil {
return false, updatedNs, err
}
if !isFit && msg != "" {
msg = fmt.Sprintf("Resource quota [%v] exceeds project limit ", msg)
}
validated, err := c.setValidated(updatedNs, isFit, msg)
return isFit, validated, err
}
func (c *SyncController) setValidated(ns *corev1.Namespace, value bool, msg string) (*corev1.Namespace, error) {
set, err := namespaceutil.IsNamespaceConditionSet(ns, ResourceQuotaValidatedCondition, value)
if set || err != nil {
return ns, err
}
toUpdate := ns.DeepCopy()
err = namespaceutil.SetNamespaceCondition(toUpdate, time.Second*1, ResourceQuotaValidatedCondition, value, msg)
if err != nil {
return ns, err
}
return c.Namespaces.Update(toUpdate)
}
func (c *SyncController) getResourceQuotaToUpdate(ns *corev1.Namespace) (string, error) {
quota := getNamespaceResourceQuota(ns)
defaultQuota, err := getProjectNamespaceDefaultQuota(ns, c.ProjectLister)
if err != nil {
return "", err
}
// rework after api framework change is done
// when annotation field is passed as null, the annotation should be removed
// instead of being updated with the null value
var updatedQuota *v3.NamespaceResourceQuota
if quota != "" && quota != "null" {
// check if fields need to be removed or set
// based on the default quota
var existingQuota v3.NamespaceResourceQuota
err := json.Unmarshal([]byte(convert.ToString(quota)), &existingQuota)
if err != nil {
return "", err
}
updatedQuota, err = completeQuota(&existingQuota, defaultQuota)
if updatedQuota == nil || err != nil {
return "", err
}
}
var b []byte
if updatedQuota == nil {
b, err = json.Marshal(defaultQuota)
} else {
b, err = json.Marshal(updatedQuota)
}
if err != nil {
return "", err
}
return string(b), nil
}
func (c *SyncController) getResourceLimitToUpdate(ns *corev1.Namespace) (*corev1.LimitRangeSpec, error) {
nsLimit, err := getNamespaceContainerResourceLimit(ns)
if err != nil {
return nil, err
}
projectLimit, err := getProjectContainerDefaultLimit(ns, c.ProjectLister)
if err != nil {
return nil, err
}
// rework after api framework change is done
// when annotation field is passed as null, the annotation should be removed
// instead of being updated with the null value
var updatedLimit *v3.ContainerResourceLimit
if nsLimit != nil {
// check if fields need to be removed or set
// based on the default quota
updatedLimit, err = completeLimit(nsLimit, projectLimit)
if err != nil {
return nil, err
}
}
if updatedLimit != nil {
return convertPodResourceLimitToLimitRangeSpec(updatedLimit)
} else if nsLimit != nil {
return convertPodResourceLimitToLimitRangeSpec(nsLimit)
}
return nil, nil
}
func completeQuota(existingQuota *v3.NamespaceResourceQuota, defaultQuota *v3.NamespaceResourceQuota) (*v3.NamespaceResourceQuota, error) {
if defaultQuota == nil {
return nil, nil
}
existingLimitMap, err := convert.EncodeToMap(existingQuota.Limit)
if err != nil {
return nil, err
}
newLimitMap, err := convert.EncodeToMap(defaultQuota.Limit)
if err != nil {
return nil, err
}
for key, value := range existingLimitMap {
if _, ok := newLimitMap[key]; ok {
newLimitMap[key] = value
}
}
if reflect.DeepEqual(existingLimitMap, newLimitMap) {
return nil, nil
}
toReturn := existingQuota.DeepCopy()
newLimit := v3.ResourceQuotaLimit{}
if err := mapstructure.Decode(newLimitMap, &newLimit); err != nil {
return nil, err
}
toReturn.Limit = newLimit
return toReturn, nil
}
func completeLimit(existingLimit *v3.ContainerResourceLimit, defaultLimit *v3.ContainerResourceLimit) (*v3.ContainerResourceLimit, error) {
if defaultLimit == nil {
return nil, nil
}
existingLimitMap, err := convert.EncodeToMap(existingLimit)
if err != nil {
return nil, err
}
newLimitMap, err := convert.EncodeToMap(defaultLimit)
if err != nil {
return nil, err
}
for key, value := range existingLimitMap {
if _, ok := newLimitMap[key]; ok {
newLimitMap[key] = value
}
}
if reflect.DeepEqual(existingLimitMap, newLimitMap) {
return nil, nil
}
toReturn := existingLimit.DeepCopy()
newLimit := v3.ContainerResourceLimit{}
if err := mapstructure.Decode(newLimitMap, &newLimit); err != nil {
return nil, err
}
toReturn = &newLimit
return toReturn, nil
}