-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathregister.go
More file actions
75 lines (65 loc) · 2.39 KB
/
register.go
File metadata and controls
75 lines (65 loc) · 2.39 KB
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
package api
import (
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/unversioned"
)
// SchemeGroupVersion is group version used to register these objects
var SchemeGroupVersion = unversioned.GroupVersion{Group: "", Version: ""}
// Kind takes an unqualified kind and returns back a Group qualified GroupKind
func Kind(kind string) unversioned.GroupKind {
return SchemeGroupVersion.WithKind(kind).GroupKind()
}
// Resource takes an unqualified resource and returns back a Group qualified GroupResource
func Resource(resource string) unversioned.GroupResource {
return SchemeGroupVersion.WithResource(resource).GroupResource()
}
func init() {
api.Scheme.AddKnownTypes(SchemeGroupVersion,
&Role{},
&RoleBinding{},
&Policy{},
&PolicyBinding{},
&PolicyList{},
&PolicyBindingList{},
&RoleBindingList{},
&RoleList{},
&ResourceAccessReview{},
&SubjectAccessReview{},
&LocalResourceAccessReview{},
&LocalSubjectAccessReview{},
&ResourceAccessReviewResponse{},
&SubjectAccessReviewResponse{},
&IsPersonalSubjectAccessReview{},
&ClusterRole{},
&ClusterRoleBinding{},
&ClusterPolicy{},
&ClusterPolicyBinding{},
&ClusterPolicyList{},
&ClusterPolicyBindingList{},
&ClusterRoleBindingList{},
&ClusterRoleList{},
)
}
func (*ClusterRole) IsAnAPIObject() {}
func (*ClusterPolicy) IsAnAPIObject() {}
func (*ClusterPolicyBinding) IsAnAPIObject() {}
func (*ClusterRoleBinding) IsAnAPIObject() {}
func (*ClusterPolicyList) IsAnAPIObject() {}
func (*ClusterPolicyBindingList) IsAnAPIObject() {}
func (*ClusterRoleBindingList) IsAnAPIObject() {}
func (*ClusterRoleList) IsAnAPIObject() {}
func (*Role) IsAnAPIObject() {}
func (*Policy) IsAnAPIObject() {}
func (*PolicyBinding) IsAnAPIObject() {}
func (*RoleBinding) IsAnAPIObject() {}
func (*PolicyList) IsAnAPIObject() {}
func (*PolicyBindingList) IsAnAPIObject() {}
func (*RoleBindingList) IsAnAPIObject() {}
func (*RoleList) IsAnAPIObject() {}
func (*ResourceAccessReview) IsAnAPIObject() {}
func (*SubjectAccessReview) IsAnAPIObject() {}
func (*LocalResourceAccessReview) IsAnAPIObject() {}
func (*LocalSubjectAccessReview) IsAnAPIObject() {}
func (*ResourceAccessReviewResponse) IsAnAPIObject() {}
func (*SubjectAccessReviewResponse) IsAnAPIObject() {}
func (*IsPersonalSubjectAccessReview) IsAnAPIObject() {}