Skip to content

Commit

Permalink
generated
Browse files Browse the repository at this point in the history
  • Loading branch information
deads2k committed Dec 7, 2017
1 parent 71a6f94 commit 9f2d532
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/cmd/server/api/v1/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -696,6 +696,11 @@ func (in *ClusterNetworkEntry) DeepCopy() *ClusterNetworkEntry {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ControllerConfig) DeepCopyInto(out *ControllerConfig) {
*out = *in
if in.Controllers != nil {
in, out := &in.Controllers, &out.Controllers
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Election != nil {
in, out := &in.Election, &out.Election
if *in == nil {
Expand Down
5 changes: 5 additions & 0 deletions pkg/cmd/server/api/zz_generated.deepcopy.go
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,11 @@ func (in *ClusterNetworkEntry) DeepCopy() *ClusterNetworkEntry {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *ControllerConfig) DeepCopyInto(out *ControllerConfig) {
*out = *in
if in.Controllers != nil {
in, out := &in.Controllers, &out.Controllers
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Election != nil {
in, out := &in.Election, &out.Election
if *in == nil {
Expand Down

0 comments on commit 9f2d532

Please sign in to comment.