summaryrefslogtreecommitdiff
path: root/vendor/github.com/openshift/api/config/v1/register.go
blob: 35eace3701c2b96172e79c9dcf2e27f09cd8fc4c (plain)
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
package v1

import (
	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
	"k8s.io/apimachinery/pkg/runtime"
	"k8s.io/apimachinery/pkg/runtime/schema"
)

var (
	GroupName     = "config.openshift.io"
	GroupVersion  = schema.GroupVersion{Group: GroupName, Version: "v1"}
	schemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
	// Install is a function which adds this version to a scheme
	Install = schemeBuilder.AddToScheme

	// SchemeGroupVersion generated code relies on this name
	// Deprecated
	SchemeGroupVersion = GroupVersion
	// AddToScheme exists solely to keep the old generators creating valid code
	// DEPRECATED
	AddToScheme = schemeBuilder.AddToScheme
)

// Resource generated code relies on this being here, but it logically belongs to the group
// DEPRECATED
func Resource(resource string) schema.GroupResource {
	return schema.GroupResource{Group: GroupName, Resource: resource}
}

// Adds the list of known types to api.Scheme.
func addKnownTypes(scheme *runtime.Scheme) error {
	scheme.AddKnownTypes(GroupVersion,
		&APIServer{},
		&APIServerList{},
		&Authentication{},
		&AuthenticationList{},
		&Build{},
		&BuildList{},
		&ClusterOperator{},
		&ClusterOperatorList{},
		&ClusterVersion{},
		&ClusterVersionList{},
		&Console{},
		&ConsoleList{},
		&DNS{},
		&DNSList{},
		&FeatureGate{},
		&FeatureGateList{},
		&Image{},
		&ImageList{},
		&Infrastructure{},
		&InfrastructureList{},
		&Ingress{},
		&IngressList{},
		&Network{},
		&NetworkList{},
		&OAuth{},
		&OAuthList{},
		&OperatorHub{},
		&OperatorHubList{},
		&Project{},
		&ProjectList{},
		&Proxy{},
		&ProxyList{},
		&Scheduler{},
		&SchedulerList{},
	)
	metav1.AddToGroupVersion(scheme, GroupVersion)
	return nil
}