@@ -421,6 +421,39 @@ func (in *ClusterSpec) DeepCopyInto(out *ClusterSpec) {
421421 * * out = * * in
422422 }
423423 }
424+ if in .SecurityContext != nil {
425+ in , out := & in .SecurityContext , & out .SecurityContext
426+ if * in == nil {
427+ * out = nil
428+ } else {
429+ * out = new (v1.PodSecurityContext )
430+ (* in ).DeepCopyInto (* out )
431+ }
432+ }
433+ if in .Tolerations != nil {
434+ in , out := & in .Tolerations , & out .Tolerations
435+ if * in == nil {
436+ * out = nil
437+ } else {
438+ * out = new ([]v1.Toleration )
439+ if * * in != nil {
440+ in , out := * in , * out
441+ * out = make ([]v1.Toleration , len (* in ))
442+ for i := range * in {
443+ (* in )[i ].DeepCopyInto (& (* out )[i ])
444+ }
445+ }
446+ }
447+ }
448+ if in .Resources != nil {
449+ in , out := & in .Resources , & out .Resources
450+ if * in == nil {
451+ * out = nil
452+ } else {
453+ * out = new (Resources )
454+ (* in ).DeepCopyInto (* out )
455+ }
456+ }
424457 return
425458}
426459
@@ -496,6 +529,40 @@ func (in *MySQLDumpBackupExecutor) DeepCopy() *MySQLDumpBackupExecutor {
496529 return out
497530}
498531
532+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
533+ func (in * Resources ) DeepCopyInto (out * Resources ) {
534+ * out = * in
535+ if in .Agent != nil {
536+ in , out := & in .Agent , & out .Agent
537+ if * in == nil {
538+ * out = nil
539+ } else {
540+ * out = new (v1.ResourceRequirements )
541+ (* in ).DeepCopyInto (* out )
542+ }
543+ }
544+ if in .Server != nil {
545+ in , out := & in .Server , & out .Server
546+ if * in == nil {
547+ * out = nil
548+ } else {
549+ * out = new (v1.ResourceRequirements )
550+ (* in ).DeepCopyInto (* out )
551+ }
552+ }
553+ return
554+ }
555+
556+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Resources.
557+ func (in * Resources ) DeepCopy () * Resources {
558+ if in == nil {
559+ return nil
560+ }
561+ out := new (Resources )
562+ in .DeepCopyInto (out )
563+ return out
564+ }
565+
499566// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
500567func (in * Restore ) DeepCopyInto (out * Restore ) {
501568 * out = * in
0 commit comments