forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
admission.go
168 lines (139 loc) · 5.34 KB
/
admission.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
package clusterresourcequota
import (
"errors"
"io"
"sort"
"sync"
"time"
utilwait "k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apiserver/pkg/admission"
kapi "k8s.io/kubernetes/pkg/api"
kcorelisters "k8s.io/kubernetes/pkg/client/listers/core/internalversion"
"k8s.io/kubernetes/pkg/quota"
"k8s.io/kubernetes/plugin/pkg/admission/resourcequota"
resourcequotaapi "k8s.io/kubernetes/plugin/pkg/admission/resourcequota/apis/resourcequota"
oclient "github.com/openshift/origin/pkg/client"
ocache "github.com/openshift/origin/pkg/client/cache"
oadmission "github.com/openshift/origin/pkg/cmd/server/admission"
"github.com/openshift/origin/pkg/controller/shared"
"github.com/openshift/origin/pkg/quota/controller/clusterquotamapping"
)
func init() {
admission.RegisterPlugin("openshift.io/ClusterResourceQuota",
func(config io.Reader) (admission.Interface, error) {
return NewClusterResourceQuota()
})
}
// clusterQuotaAdmission implements an admission controller that can enforce clusterQuota constraints
type clusterQuotaAdmission struct {
*admission.Handler
// these are used to create the accessor
clusterQuotaLister *ocache.IndexerToClusterResourceQuotaLister
namespaceLister kcorelisters.NamespaceLister
clusterQuotaSynced func() bool
namespaceSynced func() bool
clusterQuotaClient oclient.ClusterResourceQuotasInterface
clusterQuotaMapper clusterquotamapping.ClusterQuotaMapper
lockFactory LockFactory
// these are used to create the evaluator
registry quota.Registry
init sync.Once
evaluator resourcequota.Evaluator
}
var _ oadmission.WantsInformers = &clusterQuotaAdmission{}
var _ oadmission.WantsOpenshiftClient = &clusterQuotaAdmission{}
var _ oadmission.WantsClusterQuotaMapper = &clusterQuotaAdmission{}
const (
timeToWaitForCacheSync = 10 * time.Second
numEvaluatorThreads = 10
)
// NewClusterResourceQuota configures an admission controller that can enforce clusterQuota constraints
// using the provided registry. The registry must have the capability to handle group/kinds that
// are persisted by the server this admission controller is intercepting
func NewClusterResourceQuota() (admission.Interface, error) {
return &clusterQuotaAdmission{
Handler: admission.NewHandler(admission.Create, admission.Update),
lockFactory: NewDefaultLockFactory(),
}, nil
}
// Admit makes admission decisions while enforcing clusterQuota
func (q *clusterQuotaAdmission) Admit(a admission.Attributes) (err error) {
// ignore all operations that correspond to sub-resource actions
if len(a.GetSubresource()) != 0 {
return nil
}
// ignore cluster level resources
if len(a.GetNamespace()) == 0 {
return nil
}
if !q.waitForSyncedStore(time.After(timeToWaitForCacheSync)) {
return admission.NewForbidden(a, errors.New("caches not synchronized"))
}
q.init.Do(func() {
clusterQuotaAccessor := newQuotaAccessor(q.clusterQuotaLister, q.namespaceLister, q.clusterQuotaClient, q.clusterQuotaMapper)
q.evaluator = resourcequota.NewQuotaEvaluator(clusterQuotaAccessor, q.registry, q.lockAquisition, &resourcequotaapi.Configuration{}, numEvaluatorThreads, utilwait.NeverStop)
})
return q.evaluator.Evaluate(a)
}
func (q *clusterQuotaAdmission) lockAquisition(quotas []kapi.ResourceQuota) func() {
locks := []sync.Locker{}
// acquire the locks in alphabetical order because I'm too lazy to think of something clever
sort.Sort(ByName(quotas))
for _, quota := range quotas {
lock := q.lockFactory.GetLock(quota.Name)
lock.Lock()
locks = append(locks, lock)
}
return func() {
for i := len(locks) - 1; i >= 0; i-- {
locks[i].Unlock()
}
}
}
func (q *clusterQuotaAdmission) waitForSyncedStore(timeout <-chan time.Time) bool {
for !q.clusterQuotaSynced() || !q.namespaceSynced() {
select {
case <-time.After(100 * time.Millisecond):
case <-timeout:
return q.clusterQuotaSynced() && q.namespaceSynced()
}
}
return true
}
func (q *clusterQuotaAdmission) SetOriginQuotaRegistry(registry quota.Registry) {
q.registry = registry
}
func (q *clusterQuotaAdmission) SetInformers(informers shared.InformerFactory) {
q.clusterQuotaLister = informers.ClusterResourceQuotas().Lister()
q.clusterQuotaSynced = informers.ClusterResourceQuotas().Informer().HasSynced
q.namespaceLister = informers.InternalKubernetesInformers().Core().InternalVersion().Namespaces().Lister()
q.namespaceSynced = informers.InternalKubernetesInformers().Core().InternalVersion().Namespaces().Informer().HasSynced
}
func (q *clusterQuotaAdmission) SetOpenshiftClient(client oclient.Interface) {
q.clusterQuotaClient = client
}
func (q *clusterQuotaAdmission) SetClusterQuotaMapper(clusterQuotaMapper clusterquotamapping.ClusterQuotaMapper) {
q.clusterQuotaMapper = clusterQuotaMapper
}
func (q *clusterQuotaAdmission) Validate() error {
if q.clusterQuotaLister == nil {
return errors.New("missing clusterQuotaLister")
}
if q.namespaceLister == nil {
return errors.New("missing namespaceLister")
}
if q.clusterQuotaClient == nil {
return errors.New("missing clusterQuotaClient")
}
if q.clusterQuotaMapper == nil {
return errors.New("missing clusterQuotaMapper")
}
if q.registry == nil {
return errors.New("missing registry")
}
return nil
}
type ByName []kapi.ResourceQuota
func (v ByName) Len() int { return len(v) }
func (v ByName) Swap(i, j int) { v[i], v[j] = v[j], v[i] }
func (v ByName) Less(i, j int) bool { return v[i].Name < v[j].Name }