forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.go
41 lines (35 loc) · 1.26 KB
/
register.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
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,
&Build{},
&BuildList{},
&BuildConfig{},
&BuildConfigList{},
&BuildLog{},
&BuildRequest{},
&BuildLogOptions{},
&BinaryBuildRequestOptions{},
)
}
func (*Build) IsAnAPIObject() {}
func (*BuildList) IsAnAPIObject() {}
func (*BuildConfig) IsAnAPIObject() {}
func (*BuildConfigList) IsAnAPIObject() {}
func (*BuildLog) IsAnAPIObject() {}
func (*BuildRequest) IsAnAPIObject() {}
func (*BuildLogOptions) IsAnAPIObject() {}
func (*BinaryBuildRequestOptions) IsAnAPIObject() {}