register.go 2.6 KB
Newer Older
J
Jeff 已提交
1
/*
2
Copyright 2020 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 scheme

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"
R
runzexia 已提交
27
	clusterv1alpha1 "kubesphere.io/kubesphere/pkg/apis/cluster/v1alpha1"
R
runzexia 已提交
28
	devopsv1alpha1 "kubesphere.io/kubesphere/pkg/apis/devops/v1alpha1"
R
runzexia 已提交
29
	devopsv1alpha3 "kubesphere.io/kubesphere/pkg/apis/devops/v1alpha3"
H
hongming 已提交
30
	iamv1alpha2 "kubesphere.io/kubesphere/pkg/apis/iam/v1alpha2"
31
	networkv1alpha1 "kubesphere.io/kubesphere/pkg/apis/network/v1alpha1"
J
Jeff 已提交
32
	servicemeshv1alpha2 "kubesphere.io/kubesphere/pkg/apis/servicemesh/v1alpha2"
Z
zhangmin 已提交
33
	storagev1alpha1 "kubesphere.io/kubesphere/pkg/apis/storage/v1alpha1"
H
hongming 已提交
34
	tenantv1alpha1 "kubesphere.io/kubesphere/pkg/apis/tenant/v1alpha1"
H
hongming 已提交
35
	tenantv1alpha2 "kubesphere.io/kubesphere/pkg/apis/tenant/v1alpha2"
J
Jeff 已提交
36 37 38 39 40 41
)

var Scheme = runtime.NewScheme()
var Codecs = serializer.NewCodecFactory(Scheme)
var ParameterCodec = runtime.NewParameterCodec(Scheme)
var localSchemeBuilder = runtime.SchemeBuilder{
R
runzexia 已提交
42
	clusterv1alpha1.AddToScheme,
R
runzexia 已提交
43
	devopsv1alpha1.AddToScheme,
R
runzexia 已提交
44
	devopsv1alpha3.AddToScheme,
H
hongming 已提交
45
	iamv1alpha2.AddToScheme,
46
	networkv1alpha1.AddToScheme,
J
Jeff 已提交
47
	servicemeshv1alpha2.AddToScheme,
Z
zhangmin 已提交
48
	storagev1alpha1.AddToScheme,
H
hongming 已提交
49
	tenantv1alpha1.AddToScheme,
H
hongming 已提交
50
	tenantv1alpha2.AddToScheme,
J
Jeff 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
}

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