Skip to content

Commit 171d733

Browse files
committed
generated
1 parent a5743a7 commit 171d733

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

pkg/cmd/server/api/v1/zz_generated.deepcopy.go

+5
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,11 @@ func (in *ClusterNetworkEntry) DeepCopy() *ClusterNetworkEntry {
341341
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
342342
func (in *ControllerConfig) DeepCopyInto(out *ControllerConfig) {
343343
*out = *in
344+
if in.Controllers != nil {
345+
in, out := &in.Controllers, &out.Controllers
346+
*out = make([]string, len(*in))
347+
copy(*out, *in)
348+
}
344349
if in.Election != nil {
345350
in, out := &in.Election, &out.Election
346351
if *in == nil {

pkg/cmd/server/api/zz_generated.deepcopy.go

+5
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,11 @@ func (in *ClusterNetworkEntry) DeepCopy() *ClusterNetworkEntry {
349349
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
350350
func (in *ControllerConfig) DeepCopyInto(out *ControllerConfig) {
351351
*out = *in
352+
if in.Controllers != nil {
353+
in, out := &in.Controllers, &out.Controllers
354+
*out = make([]string, len(*in))
355+
copy(*out, *in)
356+
}
352357
if in.Election != nil {
353358
in, out := &in.Election, &out.Election
354359
if *in == nil {

0 commit comments

Comments
 (0)