|
|
|
@ -1,5 +1,19 @@
|
|
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
https://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 controller-gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package v1alpha1
|
|
|
|
@ -217,6 +231,13 @@ func (in *Clusterctl) DeepCopyInto(out *Clusterctl) {
|
|
|
|
|
(*out)[key] = val
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if in.ImageMetas != nil {
|
|
|
|
|
in, out := &in.ImageMetas, &out.ImageMetas
|
|
|
|
|
*out = make(map[string]ImageMeta, len(*in))
|
|
|
|
|
for key, val := range *in {
|
|
|
|
|
(*out)[key] = val
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Clusterctl.
|
|
|
|
@ -302,6 +323,21 @@ func (in *ImageConfiguration) DeepCopyObject() runtime.Object {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
func (in *ImageMeta) DeepCopyInto(out *ImageMeta) {
|
|
|
|
|
*out = *in
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageMeta.
|
|
|
|
|
func (in *ImageMeta) DeepCopy() *ImageMeta {
|
|
|
|
|
if in == nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
out := new(ImageMeta)
|
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
|
return out
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
|
func (in *InitOptions) DeepCopyInto(out *InitOptions) {
|
|
|
|
|
*out = *in
|
|
|
|
|