fix(k8-operator): common types support

This commit is contained in:
Daniel Hougaard
2024-12-08 21:25:35 +04:00
parent 7ede4e2cf5
commit 9b50d451ec
3 changed files with 81 additions and 233 deletions

View File

@@ -261,7 +261,7 @@ func (in *InfisicalDynamicSecret) DeepCopyInto(out *InfisicalDynamicSecret) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
out.Spec = in.Spec
in.Spec.DeepCopyInto(&out.Spec)
in.Status.DeepCopyInto(&out.Status)
}
@@ -335,7 +335,7 @@ func (in *InfisicalDynamicSecretList) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InfisicalDynamicSecretSpec) DeepCopyInto(out *InfisicalDynamicSecretSpec) {
*out = *in
out.ManagedSecretReference = in.ManagedSecretReference
in.ManagedSecretReference.DeepCopyInto(&out.ManagedSecretReference)
out.Authentication = in.Authentication
out.DynamicSecret = in.DynamicSecret
out.TLS = in.TLS