| // +build !ignore_autogenerated |
| |
| // Code generated by controller-gen. DO NOT EDIT. |
| |
| package v1alpha1 |
| |
| import ( |
| "k8s.io/api/core/v1" |
| runtime "k8s.io/apimachinery/pkg/runtime" |
| ) |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowBase) DeepCopyInto(out *AirflowBase) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| in.Spec.DeepCopyInto(&out.Spec) |
| in.Status.DeepCopyInto(&out.Status) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowBase. |
| func (in *AirflowBase) DeepCopy() *AirflowBase { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowBase) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *AirflowBase) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowBaseList) DeepCopyInto(out *AirflowBaseList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]AirflowBase, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowBaseList. |
| func (in *AirflowBaseList) DeepCopy() *AirflowBaseList { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowBaseList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *AirflowBaseList) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowBaseSpec) DeepCopyInto(out *AirflowBaseSpec) { |
| *out = *in |
| if in.NodeSelector != nil { |
| in, out := &in.NodeSelector, &out.NodeSelector |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.Affinity != nil { |
| in, out := &in.Affinity, &out.Affinity |
| *out = new(v1.Affinity) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Annotations != nil { |
| in, out := &in.Annotations, &out.Annotations |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.Labels != nil { |
| in, out := &in.Labels, &out.Labels |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.MySQL != nil { |
| in, out := &in.MySQL, &out.MySQL |
| *out = new(MySQLSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.SQLProxy != nil { |
| in, out := &in.SQLProxy, &out.SQLProxy |
| *out = new(SQLProxySpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Postgres != nil { |
| in, out := &in.Postgres, &out.Postgres |
| *out = new(PostgresSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Storage != nil { |
| in, out := &in.Storage, &out.Storage |
| *out = new(NFSStoreSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowBaseSpec. |
| func (in *AirflowBaseSpec) DeepCopy() *AirflowBaseSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowBaseSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowBaseStatus) DeepCopyInto(out *AirflowBaseStatus) { |
| *out = *in |
| in.Meta.DeepCopyInto(&out.Meta) |
| in.ComponentMeta.DeepCopyInto(&out.ComponentMeta) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowBaseStatus. |
| func (in *AirflowBaseStatus) DeepCopy() *AirflowBaseStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowBaseStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowCluster) DeepCopyInto(out *AirflowCluster) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| in.Spec.DeepCopyInto(&out.Spec) |
| in.Status.DeepCopyInto(&out.Status) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowCluster. |
| func (in *AirflowCluster) DeepCopy() *AirflowCluster { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowCluster) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *AirflowCluster) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowClusterList) DeepCopyInto(out *AirflowClusterList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]AirflowCluster, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowClusterList. |
| func (in *AirflowClusterList) DeepCopy() *AirflowClusterList { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowClusterList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *AirflowClusterList) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowClusterSpec) DeepCopyInto(out *AirflowClusterSpec) { |
| *out = *in |
| if in.NodeSelector != nil { |
| in, out := &in.NodeSelector, &out.NodeSelector |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.Affinity != nil { |
| in, out := &in.Affinity, &out.Affinity |
| *out = new(v1.Affinity) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Annotations != nil { |
| in, out := &in.Annotations, &out.Annotations |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.Labels != nil { |
| in, out := &in.Labels, &out.Labels |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| in.Config.DeepCopyInto(&out.Config) |
| if in.MemoryStore != nil { |
| in, out := &in.MemoryStore, &out.MemoryStore |
| *out = new(MemoryStoreSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Redis != nil { |
| in, out := &in.Redis, &out.Redis |
| *out = new(RedisSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Scheduler != nil { |
| in, out := &in.Scheduler, &out.Scheduler |
| *out = new(SchedulerSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Worker != nil { |
| in, out := &in.Worker, &out.Worker |
| *out = new(WorkerSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.UI != nil { |
| in, out := &in.UI, &out.UI |
| *out = new(AirflowUISpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Flower != nil { |
| in, out := &in.Flower, &out.Flower |
| *out = new(FlowerSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.DAGs != nil { |
| in, out := &in.DAGs, &out.DAGs |
| *out = new(DagSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.AirflowBaseRef != nil { |
| in, out := &in.AirflowBaseRef, &out.AirflowBaseRef |
| *out = new(v1.LocalObjectReference) |
| **out = **in |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowClusterSpec. |
| func (in *AirflowClusterSpec) DeepCopy() *AirflowClusterSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowClusterSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowClusterStatus) DeepCopyInto(out *AirflowClusterStatus) { |
| *out = *in |
| in.Meta.DeepCopyInto(&out.Meta) |
| in.ComponentMeta.DeepCopyInto(&out.ComponentMeta) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowClusterStatus. |
| func (in *AirflowClusterStatus) DeepCopy() *AirflowClusterStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowClusterStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *AirflowUISpec) DeepCopyInto(out *AirflowUISpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AirflowUISpec. |
| func (in *AirflowUISpec) DeepCopy() *AirflowUISpec { |
| if in == nil { |
| return nil |
| } |
| out := new(AirflowUISpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ClusterConfig) DeepCopyInto(out *ClusterConfig) { |
| *out = *in |
| if in.AirflowEnv != nil { |
| in, out := &in.AirflowEnv, &out.AirflowEnv |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.AirflowSecretEnv != nil { |
| in, out := &in.AirflowSecretEnv, &out.AirflowSecretEnv |
| *out = make([]SecretEnv, len(*in)) |
| copy(*out, *in) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfig. |
| func (in *ClusterConfig) DeepCopy() *ClusterConfig { |
| if in == nil { |
| return nil |
| } |
| out := new(ClusterConfig) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *DagSpec) DeepCopyInto(out *DagSpec) { |
| *out = *in |
| if in.Git != nil { |
| in, out := &in.Git, &out.Git |
| *out = new(GitSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.NfsPV != nil { |
| in, out := &in.NfsPV, &out.NfsPV |
| *out = new(v1.PersistentVolumeClaim) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Storage != nil { |
| in, out := &in.Storage, &out.Storage |
| *out = new(StorageSpec) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.GCS != nil { |
| in, out := &in.GCS, &out.GCS |
| *out = new(GCSSpec) |
| **out = **in |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DagSpec. |
| func (in *DagSpec) DeepCopy() *DagSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(DagSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *FlowerSpec) DeepCopyInto(out *FlowerSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FlowerSpec. |
| func (in *FlowerSpec) DeepCopy() *FlowerSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(FlowerSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *GCSSpec) DeepCopyInto(out *GCSSpec) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCSSpec. |
| func (in *GCSSpec) DeepCopy() *GCSSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(GCSSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *GitSpec) DeepCopyInto(out *GitSpec) { |
| *out = *in |
| if in.CredSecretRef != nil { |
| in, out := &in.CredSecretRef, &out.CredSecretRef |
| *out = new(v1.LocalObjectReference) |
| **out = **in |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitSpec. |
| func (in *GitSpec) DeepCopy() *GitSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(GitSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *MemoryStoreSpec) DeepCopyInto(out *MemoryStoreSpec) { |
| *out = *in |
| if in.RedisConfigs != nil { |
| in, out := &in.RedisConfigs, &out.RedisConfigs |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| in.Status.DeepCopyInto(&out.Status) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemoryStoreSpec. |
| func (in *MemoryStoreSpec) DeepCopy() *MemoryStoreSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(MemoryStoreSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *MemoryStoreStatus) DeepCopyInto(out *MemoryStoreStatus) { |
| *out = *in |
| in.Meta.DeepCopyInto(&out.Meta) |
| in.ComponentMeta.DeepCopyInto(&out.ComponentMeta) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemoryStoreStatus. |
| func (in *MemoryStoreStatus) DeepCopy() *MemoryStoreStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(MemoryStoreStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *MySQLBackup) DeepCopyInto(out *MySQLBackup) { |
| *out = *in |
| in.Storage.DeepCopyInto(&out.Storage) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MySQLBackup. |
| func (in *MySQLBackup) DeepCopy() *MySQLBackup { |
| if in == nil { |
| return nil |
| } |
| out := new(MySQLBackup) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *MySQLSpec) DeepCopyInto(out *MySQLSpec) { |
| *out = *in |
| if in.VolumeClaimTemplate != nil { |
| in, out := &in.VolumeClaimTemplate, &out.VolumeClaimTemplate |
| *out = new(v1.PersistentVolumeClaim) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.BackupVolumeClaimTemplate != nil { |
| in, out := &in.BackupVolumeClaimTemplate, &out.BackupVolumeClaimTemplate |
| *out = new(v1.PersistentVolumeClaim) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Backup != nil { |
| in, out := &in.Backup, &out.Backup |
| *out = new(MySQLBackup) |
| (*in).DeepCopyInto(*out) |
| } |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.Options != nil { |
| in, out := &in.Options, &out.Options |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MySQLSpec. |
| func (in *MySQLSpec) DeepCopy() *MySQLSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(MySQLSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *NFSStoreSpec) DeepCopyInto(out *NFSStoreSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.Volume != nil { |
| in, out := &in.Volume, &out.Volume |
| *out = new(v1.PersistentVolumeClaim) |
| (*in).DeepCopyInto(*out) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NFSStoreSpec. |
| func (in *NFSStoreSpec) DeepCopy() *NFSStoreSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(NFSStoreSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *PostgresSpec) DeepCopyInto(out *PostgresSpec) { |
| *out = *in |
| if in.VolumeClaimTemplate != nil { |
| in, out := &in.VolumeClaimTemplate, &out.VolumeClaimTemplate |
| *out = new(v1.PersistentVolumeClaim) |
| (*in).DeepCopyInto(*out) |
| } |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.Options != nil { |
| in, out := &in.Options, &out.Options |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgresSpec. |
| func (in *PostgresSpec) DeepCopy() *PostgresSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(PostgresSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *RedisSpec) DeepCopyInto(out *RedisSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.VolumeClaimTemplate != nil { |
| in, out := &in.VolumeClaimTemplate, &out.VolumeClaimTemplate |
| *out = new(v1.PersistentVolumeClaim) |
| (*in).DeepCopyInto(*out) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedisSpec. |
| func (in *RedisSpec) DeepCopy() *RedisSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(RedisSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ResourceLimits) DeepCopyInto(out *ResourceLimits) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceLimits. |
| func (in *ResourceLimits) DeepCopy() *ResourceLimits { |
| if in == nil { |
| return nil |
| } |
| out := new(ResourceLimits) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ResourceRequests) DeepCopyInto(out *ResourceRequests) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceRequests. |
| func (in *ResourceRequests) DeepCopy() *ResourceRequests { |
| if in == nil { |
| return nil |
| } |
| out := new(ResourceRequests) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *Resources) DeepCopyInto(out *Resources) { |
| *out = *in |
| out.Requests = in.Requests |
| out.Limits = in.Limits |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Resources. |
| func (in *Resources) DeepCopy() *Resources { |
| if in == nil { |
| return nil |
| } |
| out := new(Resources) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SQLProxySpec) DeepCopyInto(out *SQLProxySpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SQLProxySpec. |
| func (in *SQLProxySpec) DeepCopy() *SQLProxySpec { |
| if in == nil { |
| return nil |
| } |
| out := new(SQLProxySpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SchedulerSpec) DeepCopyInto(out *SchedulerSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerSpec. |
| func (in *SchedulerSpec) DeepCopy() *SchedulerSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(SchedulerSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SchedulerStatus) DeepCopyInto(out *SchedulerStatus) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerStatus. |
| func (in *SchedulerStatus) DeepCopy() *SchedulerStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(SchedulerStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *SecretEnv) DeepCopyInto(out *SecretEnv) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretEnv. |
| func (in *SecretEnv) DeepCopy() *SecretEnv { |
| if in == nil { |
| return nil |
| } |
| out := new(SecretEnv) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *StorageSpec) DeepCopyInto(out *StorageSpec) { |
| *out = *in |
| if in.SecretRef != nil { |
| in, out := &in.SecretRef, &out.SecretRef |
| *out = new(v1.LocalObjectReference) |
| **out = **in |
| } |
| if in.Config != nil { |
| in, out := &in.Config, &out.Config |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageSpec. |
| func (in *StorageSpec) DeepCopy() *StorageSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(StorageSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *WorkerSpec) DeepCopyInto(out *WorkerSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkerSpec. |
| func (in *WorkerSpec) DeepCopy() *WorkerSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(WorkerSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |