register.go 2.4 KB
Newer Older
J
Jeff 已提交
1
/*
R
runzexia 已提交
2
Copyright 2019 The KubeSphere authors.
J
Jeff 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15

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.
See the License for the specific language governing permissions and
limitations under the License.
*/
R
runzexia 已提交
16 17

// Code generated by client-gen. DO NOT EDIT.
J
Jeff 已提交
18 19 20 21

package fake

import (
H
hongming 已提交
22 23 24 25
	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"
J
Jeff 已提交
26
	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
Z
zryfish 已提交
27
	clusterv1alpha1 "kubesphere.io/kubesphere/pkg/apis/cluster/v1alpha1"
R
runzexia 已提交
28
	devopsv1alpha1 "kubesphere.io/kubesphere/pkg/apis/devops/v1alpha1"
H
hongming 已提交
29
	iamv1alpha2 "kubesphere.io/kubesphere/pkg/apis/iam/v1alpha2"
30
	networkv1alpha1 "kubesphere.io/kubesphere/pkg/apis/network/v1alpha1"
J
Jeff 已提交
31
	servicemeshv1alpha2 "kubesphere.io/kubesphere/pkg/apis/servicemesh/v1alpha2"
H
hongming 已提交
32
	tenantv1alpha1 "kubesphere.io/kubesphere/pkg/apis/tenant/v1alpha1"
J
Jeff 已提交
33 34 35 36 37 38
)

var scheme = runtime.NewScheme()
var codecs = serializer.NewCodecFactory(scheme)
var parameterCodec = runtime.NewParameterCodec(scheme)
var localSchemeBuilder = runtime.SchemeBuilder{
Z
zryfish 已提交
39
	clusterv1alpha1.AddToScheme,
R
runzexia 已提交
40
	devopsv1alpha1.AddToScheme,
H
hongming 已提交
41
	iamv1alpha2.AddToScheme,
42
	networkv1alpha1.AddToScheme,
J
Jeff 已提交
43
	servicemeshv1alpha2.AddToScheme,
H
hongming 已提交
44
	tenantv1alpha1.AddToScheme,
J
Jeff 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
}

// 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))
}