revert scheme changes

Signed-off-by: Maartje Eyskens <maartje@eyskens.me>
This commit is contained in:
Maartje Eyskens 2020-08-27 11:02:50 +02:00
parent a160ba3186
commit 74929e6c02

View File

@ -1,12 +1,9 @@
/*
Copyright 2020 The Jetstack cert-manager contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -24,6 +21,8 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
kscheme "k8s.io/client-go/kubernetes/scheme"
acmeinstall "github.com/jetstack/cert-manager/pkg/internal/apis/acme/install"
cminstall "github.com/jetstack/cert-manager/pkg/internal/apis/certmanager/install"
@ -46,9 +45,9 @@ func init() {
metainstall.Install(Scheme)
// This is used to add the List object type
listGroupVersion := schema.GroupVersionKind{Group: "", Version: runtime.APIVersionInternal}
listGroupVersion := schema.GroupVersionKind{Group: "", Version: runtime.APIVersionInternal, Kind: "List"}
Scheme.AddKnownTypeWithName(listGroupVersion, &metainternalversion.List{})
coreGroupVersion := schema.GroupVersion{Group: "", Version: "v1"}
Scheme.AddKnownTypes(coreGroupVersion, &metav1.List{})
metav1.AddToGroupVersion(Scheme, schema.GroupVersion{Version: "v1"})
utilruntime.Must(kscheme.AddToScheme(Scheme))
}