summaryrefslogtreecommitdiff
path: root/vendor/github.com/openshift/api/config/v1/register.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/openshift/api/config/v1/register.go')
-rw-r--r--vendor/github.com/openshift/api/config/v1/register.go70
1 files changed, 0 insertions, 70 deletions
diff --git a/vendor/github.com/openshift/api/config/v1/register.go b/vendor/github.com/openshift/api/config/v1/register.go
deleted file mode 100644
index 35eace370..000000000
--- a/vendor/github.com/openshift/api/config/v1/register.go
+++ /dev/null
@@ -1,70 +0,0 @@
-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
-}