-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathrole.ts
553 lines (464 loc) · 14.6 KB
/
role.ts
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
import { ApiObject, Lazy, Names } from 'cdk8s';
import { Construct } from 'constructs';
import { IApiResource, IApiEndpoint } from './api-resource';
import * as base from './base';
import * as k8s from './imports/k8s';
import * as rb from './role-binding';
import { address } from './utils';
/**
* A reference to any Role or ClusterRole.
*/
export interface IRole extends base.IResource {
}
/**
* Properties for `Role`.
*/
export interface RoleProps extends base.ResourceProps {
/**
* A list of rules the role should allow.
*
* @default []
*/
readonly rules?: RolePolicyRule[];
}
/**
* Policy rule of a `Role.
*/
export interface RolePolicyRule {
/**
* Verbs to allow. (e.g ['get', 'watch'])
*/
readonly verbs: string[];
/**
* Resources this rule applies to.
*/
readonly resources: IApiResource[];
}
class ImportedRole extends Construct implements IRole {
private readonly _name: string;
public readonly resourceType = 'roles';
constructor(scope: Construct, id: string, name: string) {
super(scope, id);
this._name = name;
}
public get name(): string {
return this._name;
}
public get apiVersion(): string {
return k8s.KubeRole.GVK.apiVersion;
}
public get apiGroup(): string {
return 'rbac.authorization.k8s.io';
}
public get kind(): string {
return k8s.KubeRole.GVK.kind;
}
public get resourceName(): string {
return this.name;
}
}
/**
* Role is a namespaced, logical grouping of PolicyRules that can be referenced
* as a unit by a RoleBinding.
*/
export class Role extends base.Resource implements IRole {
/**
* Imports a role from the cluster as a reference.
*/
public static fromRoleName(scope: Construct, id: string, name: string): IRole {
return new ImportedRole(scope, id, name);
}
/**
* @see base.Resource.apiObject
*/
protected readonly apiObject: ApiObject;
public readonly resourceType = 'roles';
private readonly _rules: Array<RolePolicyRule> = [];
constructor(scope: Construct, id: string, props: RoleProps = {}) {
super(scope, id);
this.apiObject = new k8s.KubeRole(this, 'Resource', {
metadata: props.metadata,
rules: Lazy.any({ produce: () => this.synthesizeRules() }),
});
for (const rule of props.rules ?? []) {
this.allow(rule.verbs, ...rule.resources);
}
}
/**
* Rules associaated with this Role.
* Returns a copy, use `allow` to add rules.
*/
public get rules(): RolePolicyRule[] {
return [...this._rules];
}
/**
* Add permission to perform a list of HTTP verbs on a collection of
* resources.
*
* @param resources The resource(s) to apply to
* @see https://kubernetes.io/docs/reference/access-authn-authz/authorization/#determine-the-request-verb
*/
public allow(verbs: string[], ...resources: IApiResource[]): void {
this._rules.push({ verbs, resources });
}
/**
* Add "create" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowCreate(...resources: IApiResource[]): void {
this.allow(['create'], ...resources);
}
/**
* Add "get" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowGet(...resources: IApiResource[]): void {
this.allow(['get'], ...resources);
}
/**
* Add "list" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowList(...resources: IApiResource[]): void {
this.allow(['list'], ...resources);
}
/**
* Add "watch" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowWatch(...resources: IApiResource[]): void {
this.allow(['watch'], ...resources);
}
/**
* Add "update" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowUpdate(...resources: IApiResource[]): void {
this.allow(['update'], ...resources);
}
/**
* Add "patch" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowPatch(...resources: IApiResource[]): void {
this.allow(['patch'], ...resources);
}
/**
* Add "delete" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowDelete(...resources: IApiResource[]): void {
this.allow(['delete'], ...resources);
}
/**
* Add "deletecollection" permission for the resources.
* @param resources The resource(s) to apply to
*/
public allowDeleteCollection(...resources: IApiResource[]): void {
this.allow(['deletecollection'], ...resources);
}
/**
* Add "get", "list", and "watch" permissions for the resources.
* @param resources The resource(s) to apply to
*/
public allowRead(...resources: IApiResource[]): void {
this.allow(['get', 'list', 'watch'], ...resources);
}
/**
* Add "get", "list", "watch", "create", "update", "patch", "delete", and
* "deletecollection" permissions for the resources.
*
* @param resources The resource(s) to apply to
*/
public allowReadWrite(...resources: IApiResource[]): void {
this.allow(['get', 'list', 'watch', 'create', 'update', 'patch', 'delete', 'deletecollection'], ...resources);
}
/**
* Create a RoleBinding that binds the permissions in this Role
* to a list of subjects, that will only apply this role's namespace.
* @param subjects a list of subjects to bind to
*/
public bind(...subjects: rb.ISubject[]): rb.RoleBinding {
const subjectsAddress = address(...subjects);
const binding = new rb.RoleBinding(this, `RoleBinding${subjectsAddress}`, {
metadata: {
namespace: this.metadata.namespace,
},
role: this,
});
binding.addSubjects(...subjects);
return binding;
}
private synthesizeRules(): k8s.PolicyRule[] {
const rules: k8s.PolicyRule[] = [];
for (const rule of this._rules) {
for (const resource of rule.resources) {
rules.push({
verbs: rule.verbs,
apiGroups: [resource.apiGroup === 'core' ? '' : resource.apiGroup],
resourceNames: resource.resourceName ? [resource.resourceName] : undefined,
resources: resource.resourceType ? [resource.resourceType] : undefined,
});
}
}
return rules;
}
}
/**
* Represents a cluster-level role.
*/
export interface IClusterRole extends base.IResource {
}
/**
* Properties for `ClusterRole`.
*/
export interface ClusterRoleProps extends base.ResourceProps {
/**
* A list of rules the role should allow.
*
* @default []
*/
readonly rules?: ClusterRolePolicyRule[];
/**
* Specify labels that should be used to locate ClusterRoles, whose rules
* will be automatically filled into this ClusterRole's rules.
*/
readonly aggregationLabels?: { [key: string]: string };
}
/**
* Policy rule of a `ClusterRole.
*/
export interface ClusterRolePolicyRule {
/**
* Verbs to allow. (e.g ['get', 'watch'])
*/
readonly verbs: string[];
/**
* Endpoints this rule applies to. Can be either api resources
* or non api resources.
*/
readonly endpoints: IApiEndpoint[];
}
class ImportedClusterRole extends Construct implements IClusterRole {
private readonly _name: string;
public readonly resourceType: string = 'clusterroles';
constructor(scope: Construct, id: string, name: string) {
super(scope, id);
this._name = name;
}
public get name(): string {
return this._name;
}
public get apiVersion(): string {
return k8s.KubeClusterRole.GVK.apiVersion;
}
public get apiGroup(): string {
return 'rbac.authorization.k8s.io';
}
public get kind(): string {
return k8s.KubeClusterRole.GVK.kind;
}
public get resourceName(): string {
return this.name;
}
}
/**
* ClusterRole is a cluster level, logical grouping of PolicyRules that can be
* referenced as a unit by a RoleBinding or ClusterRoleBinding.
*/
export class ClusterRole extends base.Resource implements IClusterRole, IRole {
/**
* Imports a role from the cluster as a reference.
*/
public static fromClusterRoleName(scope: Construct, id: string, name: string): IClusterRole {
return new ImportedClusterRole(scope, id, name);
}
/**
* @see base.Resource.apiObject
*/
protected readonly apiObject: ApiObject;
public readonly resourceType = 'clusterroles';
private readonly _labelSelector: Record<string, string> = {};
private readonly _rules: Array<ClusterRolePolicyRule> = [];
constructor(scope: Construct, id: string, props: ClusterRoleProps = {}) {
super(scope, id);
this.apiObject = new k8s.KubeClusterRole(this, 'Resource', {
metadata: props.metadata,
rules: Lazy.any({ produce: () => this.synthesizeRules() }),
aggregationRule: Lazy.any({ produce: () => this.synthesizeAggregationRules() }),
});
for (const rule of props.rules ?? []) {
this.allow(rule.verbs, ...rule.endpoints);
}
for (const [key, value] of Object.entries(props.aggregationLabels ?? {})) {
this.aggregate(key, value);
}
}
/**
* Rules associaated with this Role.
* Returns a copy, use `allow` to add rules.
*/
public get rules(): ClusterRolePolicyRule[] {
return [...this._rules];
}
/**
* Add permission to perform a list of HTTP verbs on a collection of
* resources.
*
* @param endpoints The endpoints(s) to apply to
* @see https://kubernetes.io/docs/reference/access-authn-authz/authorization/#determine-the-request-verb
*/
public allow(verbs: string[], ...endpoints: IApiEndpoint[]): void {
this._rules.push({ verbs, endpoints });
}
/**
* Add "create" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowCreate(...endpoints: IApiEndpoint[]): void {
this.allow(['create'], ...endpoints);
}
/**
* Add "get" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowGet(...endpoints: IApiEndpoint[]): void {
this.allow(['get'], ...endpoints);
}
/**
* Add "list" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowList(...endpoints: IApiEndpoint[]): void {
this.allow(['list'], ...endpoints);
}
/**
* Add "watch" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowWatch(...endpoints: IApiEndpoint[]): void {
this.allow(['watch'], ...endpoints);
}
/**
* Add "update" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowUpdate(...endpoints: IApiEndpoint[]): void {
this.allow(['update'], ...endpoints);
}
/**
* Add "patch" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowPatch(...endpoints: IApiEndpoint[]): void {
this.allow(['patch'], ...endpoints);
}
/**
* Add "delete" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowDelete(...endpoints: IApiEndpoint[]): void {
this.allow(['delete'], ...endpoints);
}
/**
* Add "deletecollection" permission for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowDeleteCollection(...endpoints: IApiEndpoint[]): void {
this.allow(['deletecollection'], ...endpoints);
}
/**
* Add "get", "list", and "watch" permissions for the resources.
* @param endpoints The resource(s) to apply to
*/
public allowRead(...endpoints: IApiEndpoint[]): void {
this.allow(['get', 'list', 'watch'], ...endpoints);
}
/**
* Add "get", "list", "watch", "create", "update", "patch", "delete", and
* "deletecollection" permissions for the resources.
*
* @param endpoints The resource(s) to apply to
*/
public allowReadWrite(...endpoints: IApiEndpoint[]): void {
this.allow(['get', 'list', 'watch', 'create', 'update', 'patch', 'delete', 'deletecollection'], ...endpoints);
}
/**
* Aggregate rules from roles matching this label selector.
*/
public aggregate(key: string, value: string): void {
this._labelSelector[key] = value;
}
/**
* Combines the rules of the argument ClusterRole into this ClusterRole
* using aggregation labels.
* @param rol
*/
public combine(rol: ClusterRole): void {
const key = `cdk8s.cluster-role/aggregate-to-${Names.toLabelValue(this)}`;
const value = 'true';
rol.metadata.addLabel(key, value);
this.aggregate(key, value);
}
/**
* Create a RoleBinding that binds the permissions in this ClusterRole
* to a list of subjects, that will only apply to the given namespace.
* @param namespace the namespace to limit permissions to.
* @param subjects a list of subjects to bind to
*/
public bindInNamespace(namespace: string, ...subjects: rb.ISubject[]): rb.RoleBinding {
const binding = new rb.RoleBinding(this, `RoleBinding-${namespace}`, {
metadata: {
namespace,
},
role: this,
});
binding.addSubjects(...subjects);
return binding;
}
/**
* Create a ClusterRoleBinding that binds the permissions in this
* ClusterRole to a list of subjects, without namespace restrictions.
* @param subjects a list of subjects to bind to
*/
public bind(...subjects: rb.ISubject[]): rb.ClusterRoleBinding {
const binding = new rb.ClusterRoleBinding(this, 'ClusterRoleBinding', {
role: this,
});
binding.addSubjects(...subjects);
return binding;
}
private synthesizeRules(): k8s.PolicyRule[] {
const rules: k8s.PolicyRule[] = [];
for (const rule of this._rules) {
for (const endpoint of rule.endpoints) {
const resource = endpoint.asApiResource();
const nonResource = endpoint.asNonApiResource();
if (resource && nonResource) {
throw new Error('Endpoint must be either resource or non resource. not both.');
}
if (!resource && !nonResource) {
throw new Error('Endpoint must be either resource or non resource. not neither.');
}
if (resource) {
rules.push({
apiGroups: [resource.apiGroup === 'core' ? '' : resource.apiGroup],
resources: [resource.resourceType],
resourceNames: resource.resourceName ? [resource.resourceName] : [],
verbs: rule.verbs,
});
}
if (nonResource) {
rules.push({ verbs: rule.verbs, nonResourceUrLs: [nonResource] });
}
}
}
return rules;
}
private synthesizeAggregationRules(): k8s.AggregationRule | undefined {
if (Object.keys(this._labelSelector).length === 0) {
return undefined;
}
return { clusterRoleSelectors: [{ matchLabels: this._labelSelector }] };
}
}