update code-gen
This commit is contained in:
parent
7523f10d9f
commit
14662c9606
|
|
@ -343,6 +343,11 @@ func (in *OperatorConfigurationData) DeepCopyInto(out *OperatorConfigurationData
|
||||||
out.Scalyr = in.Scalyr
|
out.Scalyr = in.Scalyr
|
||||||
out.LogicalBackup = in.LogicalBackup
|
out.LogicalBackup = in.LogicalBackup
|
||||||
in.ConnectionPooler.DeepCopyInto(&out.ConnectionPooler)
|
in.ConnectionPooler.DeepCopyInto(&out.ConnectionPooler)
|
||||||
|
if in.StatefulsetPropagateAnnotations != nil {
|
||||||
|
in, out := &in.StatefulsetPropagateAnnotations, &out.StatefulsetPropagateAnnotations
|
||||||
|
*out = make([]string, len(*in))
|
||||||
|
copy(*out, *in)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue