2019-03-14 14:56:06 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2016-2019 Containous SAS
|
|
|
|
|
|
|
|
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 fake
|
|
|
|
|
|
|
|
import (
|
2019-03-15 08:42:03 +00:00
|
|
|
traefikv1alpha1 "github.com/containous/traefik/pkg/provider/kubernetes/crd/traefik/v1alpha1"
|
2019-03-14 14:56:06 +00:00
|
|
|
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"
|
2019-08-05 16:24:03 +00:00
|
|
|
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
|
2019-03-14 14:56:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var scheme = runtime.NewScheme()
|
|
|
|
var codecs = serializer.NewCodecFactory(scheme)
|
|
|
|
var parameterCodec = runtime.NewParameterCodec(scheme)
|
2019-08-05 16:24:03 +00:00
|
|
|
var localSchemeBuilder = runtime.SchemeBuilder{
|
|
|
|
traefikv1alpha1.AddToScheme,
|
2019-03-14 14:56:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
2019-08-05 16:24:03 +00:00
|
|
|
// _ = aggregatorclientsetscheme.AddToScheme(clientsetscheme.Scheme)
|
2019-03-14 14:56:06 +00:00
|
|
|
//
|
|
|
|
// After this, RawExtensions in Kubernetes types will serialize kube-aggregator types
|
|
|
|
// correctly.
|
2019-08-05 16:24:03 +00:00
|
|
|
var AddToScheme = localSchemeBuilder.AddToScheme
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
v1.AddToGroupVersion(scheme, schema.GroupVersion{Version: "v1"})
|
|
|
|
utilruntime.Must(AddToScheme(scheme))
|
2019-03-14 14:56:06 +00:00
|
|
|
}
|