From 733241b0acd2e96a38fba46849c568ebb00e6bd3 Mon Sep 17 00:00:00 2001 From: lrangine <19699092+lokeshrangineni@users.noreply.github.com> Date: Wed, 29 Jan 2025 18:02:55 -0500 Subject: [PATCH] Adding the Volume and volumeMount code review comments. Signed-off-by: lrangine <19699092+lokeshrangineni@users.noreply.github.com> --- .../api/v1alpha1/zz_generated.deepcopy.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/infra/feast-operator/api/v1alpha1/zz_generated.deepcopy.go b/infra/feast-operator/api/v1alpha1/zz_generated.deepcopy.go index 28b37c910c7..71875d92d95 100644 --- a/infra/feast-operator/api/v1alpha1/zz_generated.deepcopy.go +++ b/infra/feast-operator/api/v1alpha1/zz_generated.deepcopy.go @@ -276,6 +276,13 @@ func (in *LocalRegistryConfig) DeepCopyInto(out *LocalRegistryConfig) { *out = new(TlsConfigs) (*in).DeepCopyInto(*out) } + if in.VolumeMounts != nil { + in, out := &in.VolumeMounts, &out.VolumeMounts + *out = make([]corev1.VolumeMount, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalRegistryConfig. @@ -603,13 +610,6 @@ func (in *Registry) DeepCopyInto(out *Registry) { *out = new(RemoteRegistryConfig) (*in).DeepCopyInto(*out) } - if in.VolumeMounts != nil { - in, out := &in.VolumeMounts, &out.VolumeMounts - *out = make([]corev1.VolumeMount, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Registry.