63 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
/*
 | 
						|
Copyright 2021 Compose, Zalando SE
 | 
						|
 | 
						|
Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
of this software and associated documentation files (the "Software"), to deal
 | 
						|
in the Software without restriction, including without limitation the rights
 | 
						|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
copies of the Software, and to permit persons to whom the Software is
 | 
						|
furnished to do so, subject to the following conditions:
 | 
						|
 | 
						|
The above copyright notice and this permission notice shall be included in all
 | 
						|
copies or substantial portions of the Software.
 | 
						|
 | 
						|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 | 
						|
SOFTWARE.
 | 
						|
*/
 | 
						|
 | 
						|
// Code generated by client-gen. DO NOT EDIT.
 | 
						|
 | 
						|
package scheme
 | 
						|
 | 
						|
import (
 | 
						|
	acidv1 "github.com/zalando/postgres-operator/pkg/apis/acid.zalan.do/v1"
 | 
						|
	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
						|
	runtime "k8s.io/apimachinery/pkg/runtime"
 | 
						|
	schema "k8s.io/apimachinery/pkg/runtime/schema"
 | 
						|
	serializer "k8s.io/apimachinery/pkg/runtime/serializer"
 | 
						|
	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
 | 
						|
)
 | 
						|
 | 
						|
var Scheme = runtime.NewScheme()
 | 
						|
var Codecs = serializer.NewCodecFactory(Scheme)
 | 
						|
var ParameterCodec = runtime.NewParameterCodec(Scheme)
 | 
						|
var localSchemeBuilder = runtime.SchemeBuilder{
 | 
						|
	acidv1.AddToScheme,
 | 
						|
}
 | 
						|
 | 
						|
// AddToScheme adds all types of this clientset into the given scheme. This allows composition
 | 
						|
// of clientsets, like in:
 | 
						|
//
 | 
						|
//   import (
 | 
						|
//     "k8s.io/client-go/kubernetes"
 | 
						|
//     clientsetscheme "k8s.io/client-go/kubernetes/scheme"
 | 
						|
//     aggregatorclientsetscheme "k8s.io/kube-aggregator/pkg/client/clientset_generated/clientset/scheme"
 | 
						|
//   )
 | 
						|
//
 | 
						|
//   kclientset, _ := kubernetes.NewForConfig(c)
 | 
						|
//   _ = aggregatorclientsetscheme.AddToScheme(clientsetscheme.Scheme)
 | 
						|
//
 | 
						|
// After this, RawExtensions in Kubernetes types will serialize kube-aggregator types
 | 
						|
// correctly.
 | 
						|
var AddToScheme = localSchemeBuilder.AddToScheme
 | 
						|
 | 
						|
func init() {
 | 
						|
	v1.AddToGroupVersion(Scheme, schema.GroupVersion{Version: "v1"})
 | 
						|
	utilruntime.Must(AddToScheme(Scheme))
 | 
						|
}
 |