Merge pull request #4431 from Infisical/daniel/generate-types

fix(k8s): generate types
This commit is contained in:
Daniel Hougaard
2025-08-28 13:17:18 +02:00
committed by GitHub

View File

@@ -589,7 +589,7 @@ func (in *InfisicalPushSecretList) DeepCopyObject() runtime.Object {
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InfisicalPushSecretSecretSource) DeepCopyInto(out *InfisicalPushSecretSecretSource) {
func (in *InfisicalPushSecretSource) DeepCopyInto(out *InfisicalPushSecretSource) {
*out = *in
if in.Template != nil {
in, out := &in.Template, &out.Template
@@ -598,12 +598,12 @@ func (in *InfisicalPushSecretSecretSource) DeepCopyInto(out *InfisicalPushSecret
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecretSecretSource.
func (in *InfisicalPushSecretSecretSource) DeepCopy() *InfisicalPushSecretSecretSource {
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalPushSecretSource.
func (in *InfisicalPushSecretSource) DeepCopy() *InfisicalPushSecretSource {
if in == nil {
return nil
}
out := new(InfisicalPushSecretSecretSource)
out := new(InfisicalPushSecretSource)
in.DeepCopyInto(out)
return out
}
@@ -992,7 +992,7 @@ func (in *SecretPush) DeepCopyInto(out *SecretPush) {
*out = *in
if in.Secret != nil {
in, out := &in.Secret, &out.Secret
*out = new(InfisicalPushSecretSecretSource)
*out = new(InfisicalPushSecretSource)
(*in).DeepCopyInto(*out)
}
if in.Generators != nil {