fix: missing controller-gen run

Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
This commit is contained in:
Francesco Canovai 2024-12-09 11:56:02 +01:00
parent c27dc1e3d4
commit b84363c480
No known key found for this signature in database
GPG Key ID: C3867DCF133BFEB6
2 changed files with 1 additions and 8 deletions

View File

@ -35,13 +35,6 @@ func (in *InstanceSidecarConfiguration) DeepCopyInto(out *InstanceSidecarConfigu
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Env != nil {
in, out := &in.Env, &out.Env
*out = make([]corev1.EnvVar, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstanceSidecarConfiguration.

View File

@ -383,7 +383,7 @@ spec:
for the sidecar that runs in the instance pods.
properties:
env:
description: The environment to be explicitely passed to the sidecar
description: The environment to be explicitly passed to the sidecar
items:
description: EnvVar represents an environment variable present
in a Container.