|
| 1 | +// +build !ignore_autogenerated_openshift |
| 2 | + |
| 3 | +// This file was autogenerated by deepcopy-gen. Do not edit it manually! |
| 4 | + |
| 5 | +package api |
| 6 | + |
| 7 | +import ( |
| 8 | + build "github.com/openshift/origin/pkg/build/apis/build" |
| 9 | + conversion "k8s.io/apimachinery/pkg/conversion" |
| 10 | + runtime "k8s.io/apimachinery/pkg/runtime" |
| 11 | + pkg_api "k8s.io/kubernetes/pkg/api" |
| 12 | + reflect "reflect" |
| 13 | +) |
| 14 | + |
| 15 | +func init() { |
| 16 | + SchemeBuilder.Register(RegisterDeepCopies) |
| 17 | +} |
| 18 | + |
| 19 | +// RegisterDeepCopies adds deep-copy functions to the given scheme. Public |
| 20 | +// to allow building arbitrary schemes. |
| 21 | +func RegisterDeepCopies(scheme *runtime.Scheme) error { |
| 22 | + return scheme.AddGeneratedDeepCopyFuncs( |
| 23 | + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_BuildDefaultsConfig, InType: reflect.TypeOf(&BuildDefaultsConfig{})}, |
| 24 | + conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_api_SourceStrategyDefaultsConfig, InType: reflect.TypeOf(&SourceStrategyDefaultsConfig{})}, |
| 25 | + ) |
| 26 | +} |
| 27 | + |
| 28 | +// DeepCopy_api_BuildDefaultsConfig is an autogenerated deepcopy function. |
| 29 | +func DeepCopy_api_BuildDefaultsConfig(in interface{}, out interface{}, c *conversion.Cloner) error { |
| 30 | + { |
| 31 | + in := in.(*BuildDefaultsConfig) |
| 32 | + out := out.(*BuildDefaultsConfig) |
| 33 | + *out = *in |
| 34 | + if in.Env != nil { |
| 35 | + in, out := &in.Env, &out.Env |
| 36 | + *out = make([]pkg_api.EnvVar, len(*in)) |
| 37 | + for i := range *in { |
| 38 | + if err := pkg_api.DeepCopy_api_EnvVar(&(*in)[i], &(*out)[i], c); err != nil { |
| 39 | + return err |
| 40 | + } |
| 41 | + } |
| 42 | + } |
| 43 | + if in.SourceStrategyDefaults != nil { |
| 44 | + in, out := &in.SourceStrategyDefaults, &out.SourceStrategyDefaults |
| 45 | + *out = new(SourceStrategyDefaultsConfig) |
| 46 | + if err := DeepCopy_api_SourceStrategyDefaultsConfig(*in, *out, c); err != nil { |
| 47 | + return err |
| 48 | + } |
| 49 | + } |
| 50 | + if in.ImageLabels != nil { |
| 51 | + in, out := &in.ImageLabels, &out.ImageLabels |
| 52 | + *out = make([]build.ImageLabel, len(*in)) |
| 53 | + copy(*out, *in) |
| 54 | + } |
| 55 | + if in.NodeSelector != nil { |
| 56 | + in, out := &in.NodeSelector, &out.NodeSelector |
| 57 | + *out = make(map[string]string) |
| 58 | + for key, val := range *in { |
| 59 | + (*out)[key] = val |
| 60 | + } |
| 61 | + } |
| 62 | + if in.Annotations != nil { |
| 63 | + in, out := &in.Annotations, &out.Annotations |
| 64 | + *out = make(map[string]string) |
| 65 | + for key, val := range *in { |
| 66 | + (*out)[key] = val |
| 67 | + } |
| 68 | + } |
| 69 | + if err := pkg_api.DeepCopy_api_ResourceRequirements(&in.Resources, &out.Resources, c); err != nil { |
| 70 | + return err |
| 71 | + } |
| 72 | + return nil |
| 73 | + } |
| 74 | +} |
| 75 | + |
| 76 | +// DeepCopy_api_SourceStrategyDefaultsConfig is an autogenerated deepcopy function. |
| 77 | +func DeepCopy_api_SourceStrategyDefaultsConfig(in interface{}, out interface{}, c *conversion.Cloner) error { |
| 78 | + { |
| 79 | + in := in.(*SourceStrategyDefaultsConfig) |
| 80 | + out := out.(*SourceStrategyDefaultsConfig) |
| 81 | + *out = *in |
| 82 | + if in.Incremental != nil { |
| 83 | + in, out := &in.Incremental, &out.Incremental |
| 84 | + *out = new(bool) |
| 85 | + **out = **in |
| 86 | + } |
| 87 | + return nil |
| 88 | + } |
| 89 | +} |
0 commit comments