Update generated serviceprofile code (#5580)

I ran `bin/update-codegen.sh` to update the generated code to include the opaque ports in the generated deepcopy function for service profiles.

Signed-off-by: Alex Leong <alex@buoyant.io>
This commit is contained in:
Alex Leong 2021-01-22 14:34:49 -08:00 committed by GitHub
parent 4f0601e632
commit 964ce11559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -290,6 +290,13 @@ func (in *ServiceProfileSpec) DeepCopyInto(out *ServiceProfileSpec) {
} }
} }
} }
if in.OpaquePorts != nil {
in, out := &in.OpaquePorts, &out.OpaquePorts
*out = make(map[uint32]struct{}, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return return
} }