Update automatically generated files

This commit is contained in:
Xinzhao Xu
2022-02-14 16:30:58 +08:00
parent 80fc715eea
commit 57f51b7ca1
93 changed files with 3077 additions and 185 deletions

View File

@@ -14345,6 +14345,13 @@ func schema_kubesphereio_api_cluster_v1alpha1_ClusterSpec(ref common.ReferenceCa
Ref: ref("kubesphere.io/api/cluster/v1alpha1.Connection"),
},
},
"externalKubeAPIEnabled": {
SchemaProps: spec.SchemaProps{
Description: "ExternalKubeAPIEnabled export kubeapiserver to public use a lb type service if connection type is proxy",
Type: []string{"boolean"},
Format: "",
},
},
},
},
},
@@ -14467,6 +14474,13 @@ func schema_kubesphereio_api_cluster_v1alpha1_Connection(ref common.ReferenceCal
Format: "",
},
},
"externalKubernetesAPIEndpoint": {
SchemaProps: spec.SchemaProps{
Description: "External Kubernetes API Server endpoint Will be populated by ks-apiserver if connection type is proxy and ExternalKubeAPIEnabled is true.",
Type: []string{"string"},
Format: "",
},
},
"kubeconfig": {
SchemaProps: spec.SchemaProps{
Description: "KubeConfig content used to connect to cluster api server Should provide this field explicitly if connection type is direct. Will be populated by ks-proxy if connection type is proxy.",

View File

@@ -2639,7 +2639,9 @@ func (in *StatefulSetTemplate) DeepCopy() *StatefulSetTemplate {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *UserTemplate) DeepCopyInto(out *UserTemplate) {
*out = *in
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
in.Status.DeepCopyInto(&out.Status)
return
}