306 lines
8.4 KiB
Go
306 lines
8.4 KiB
Go
//go:build !ignore_autogenerated
|
|
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2023 Alibaba Group Holding Limited.
|
|
|
|
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.
|
|
*/
|
|
|
|
// Code generated by controller-gen. DO NOT EDIT.
|
|
|
|
package xstore
|
|
|
|
import (
|
|
"github.com/alibaba/polardbx-operator/api/v1/common"
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Condition) DeepCopyInto(out *Condition) {
|
|
*out = *in
|
|
if in.LastProbeTime != nil {
|
|
in, out := &in.LastProbeTime, &out.LastProbeTime
|
|
*out = (*in).DeepCopy()
|
|
}
|
|
in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Condition.
|
|
func (in *Condition) DeepCopy() *Condition {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Condition)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Config) DeepCopyInto(out *Config) {
|
|
*out = *in
|
|
in.Dynamic.DeepCopyInto(&out.Dynamic)
|
|
in.Engine.DeepCopyInto(&out.Engine)
|
|
if in.Envs != nil {
|
|
in, out := &in.Envs, &out.Envs
|
|
*out = make(map[string]intstr.IntOrString, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Config.
|
|
func (in *Config) DeepCopy() *Config {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Config)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ControllerConfig) DeepCopyInto(out *ControllerConfig) {
|
|
*out = *in
|
|
if in.LogPurgeInterval != nil {
|
|
in, out := &in.LogPurgeInterval, &out.LogPurgeInterval
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
if in.DiskQuota != nil {
|
|
in, out := &in.DiskQuota, &out.DiskQuota
|
|
x := (*in).DeepCopy()
|
|
*out = &x
|
|
}
|
|
out.RpcProtocolVersion = in.RpcProtocolVersion
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerConfig.
|
|
func (in *ControllerConfig) DeepCopy() *ControllerConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ControllerConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *EngineConfig) DeepCopyInto(out *EngineConfig) {
|
|
*out = *in
|
|
if in.Template != nil {
|
|
in, out := &in.Template, &out.Template
|
|
*out = new(common.Value)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Override != nil {
|
|
in, out := &in.Override, &out.Override
|
|
*out = new(common.Value)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EngineConfig.
|
|
func (in *EngineConfig) DeepCopy() *EngineConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(EngineConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *HostPathVolume) DeepCopyInto(out *HostPathVolume) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostPathVolume.
|
|
func (in *HostPathVolume) DeepCopy() *HostPathVolume {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(HostPathVolume)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NodeSet) DeepCopyInto(out *NodeSet) {
|
|
*out = *in
|
|
if in.Template != nil {
|
|
in, out := &in.Template, &out.Template
|
|
*out = new(NodeTemplate)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeSet.
|
|
func (in *NodeSet) DeepCopy() *NodeSet {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NodeSet)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NodeSpec) DeepCopyInto(out *NodeSpec) {
|
|
*out = *in
|
|
if in.ImagePullSecrets != nil {
|
|
in, out := &in.ImagePullSecrets, &out.ImagePullSecrets
|
|
*out = make([]corev1.LocalObjectReference, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.HostNetwork != nil {
|
|
in, out := &in.HostNetwork, &out.HostNetwork
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.Affinity != nil {
|
|
in, out := &in.Affinity, &out.Affinity
|
|
*out = new(corev1.Affinity)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Resources != nil {
|
|
in, out := &in.Resources, &out.Resources
|
|
*out = new(common.ExtendedResourceRequirements)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeSpec.
|
|
func (in *NodeSpec) DeepCopy() *NodeSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NodeSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *NodeTemplate) DeepCopyInto(out *NodeTemplate) {
|
|
*out = *in
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeTemplate.
|
|
func (in *NodeTemplate) DeepCopy() *NodeTemplate {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(NodeTemplate)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *ParameterTemplate) DeepCopyInto(out *ParameterTemplate) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParameterTemplate.
|
|
func (in *ParameterTemplate) DeepCopy() *ParameterTemplate {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ParameterTemplate)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in PodPorts) DeepCopyInto(out *PodPorts) {
|
|
{
|
|
in := &in
|
|
*out = make(PodPorts, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodPorts.
|
|
func (in PodPorts) DeepCopy() PodPorts {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PodPorts)
|
|
in.DeepCopyInto(out)
|
|
return *out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Privilege) DeepCopyInto(out *Privilege) {
|
|
*out = *in
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Privilege.
|
|
func (in *Privilege) DeepCopy() *Privilege {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Privilege)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *RestartingPods) DeepCopyInto(out *RestartingPods) {
|
|
*out = *in
|
|
if in.ToDeletePod != nil {
|
|
in, out := &in.ToDeletePod, &out.ToDeletePod
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RestartingPods.
|
|
func (in *RestartingPods) DeepCopy() *RestartingPods {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(RestartingPods)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Topology) DeepCopyInto(out *Topology) {
|
|
*out = *in
|
|
in.Template.DeepCopyInto(&out.Template)
|
|
if in.NodeSets != nil {
|
|
in, out := &in.NodeSets, &out.NodeSets
|
|
*out = make([]NodeSet, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Topology.
|
|
func (in *Topology) DeepCopy() *Topology {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Topology)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|