|
|
@ -1,22 +1,6 @@ |
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
/* |
|
|
|
Copyright The Kubernetes Authors. |
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
you may not use this file except in compliance with the License. |
|
|
|
You may obtain a copy of the License at |
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software |
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, |
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
|
|
See the License for the specific language governing permissions and |
|
|
|
limitations under the License. |
|
|
|
*/ |
|
|
|
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
// Code generated by operator-sdk. DO NOT EDIT.
|
|
|
|
|
|
|
|
package v1 |
|
|
|
|
|
|
@ -223,6 +207,20 @@ func (in *RabbitmqSpec) DeepCopyInto(out *RabbitmqSpec) { |
|
|
|
*out = new(corev1.Affinity) |
|
|
|
(*in).DeepCopyInto(*out) |
|
|
|
} |
|
|
|
if in.NodeSelector != nil { |
|
|
|
in, out := &in.NodeSelector, &out.NodeSelector |
|
|
|
*out = make(map[string]string, len(*in)) |
|
|
|
for key, val := range *in { |
|
|
|
(*out)[key] = val |
|
|
|
} |
|
|
|
} |
|
|
|
if in.Tolerations != nil { |
|
|
|
in, out := &in.Tolerations, &out.Tolerations |
|
|
|
*out = make([]corev1.Toleration, len(*in)) |
|
|
|
for i := range *in { |
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i]) |
|
|
|
} |
|
|
|
} |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|