Remove unwanted schemes
https://github.com/operator-framework/operator-sdk/issues/2577
This commit is contained in:
parent
5f39f67d96
commit
445cf2eb8c
|
|
@ -2,8 +2,6 @@ package apis
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/jenkinsci/kubernetes-operator/pkg/apis/jenkins/v1alpha2"
|
"github.com/jenkinsci/kubernetes-operator/pkg/apis/jenkins/v1alpha2"
|
||||||
routev1 "github.com/openshift/api/route/v1"
|
|
||||||
appsv1 "k8s.io/api/apps/v1"
|
|
||||||
|
|
||||||
"k8s.io/apimachinery/pkg/runtime"
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
)
|
)
|
||||||
|
|
@ -19,6 +17,4 @@ func AddToScheme(s *runtime.Scheme) error {
|
||||||
func init() {
|
func init() {
|
||||||
// Register the types with the Scheme so the components can map objects to GroupVersionKinds and back
|
// Register the types with the Scheme so the components can map objects to GroupVersionKinds and back
|
||||||
AddToSchemes = append(AddToSchemes, v1alpha2.SchemeBuilder.AddToScheme)
|
AddToSchemes = append(AddToSchemes, v1alpha2.SchemeBuilder.AddToScheme)
|
||||||
AddToSchemes = append(AddToSchemes, routev1.AddToScheme)
|
|
||||||
AddToSchemes = append(AddToSchemes, appsv1.AddToScheme)
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue