Skip to content

Commit

Permalink
generated
Browse files Browse the repository at this point in the history
  • Loading branch information
deads2k committed Dec 15, 2017
1 parent a5743a7 commit 171d733
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 @@ -341,6 +341,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 @@ -349,6 +349,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 171d733

Please sign in to comment.