From cf1e3bd80242e99fbf1b1fa030364f5d29a17e83 Mon Sep 17 00:00:00 2001 From: Artur Troian Date: Tue, 30 Apr 2024 12:00:58 -0400 Subject: [PATCH] fix(k8s/codegen): codegen for manifest credentials (#236) Signed-off-by: Artur Troian --- .../v2beta2/zz_generated.deepcopy.go | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkg/apis/akash.network/v2beta2/zz_generated.deepcopy.go b/pkg/apis/akash.network/v2beta2/zz_generated.deepcopy.go index ace644d5..c458d0e2 100644 --- a/pkg/apis/akash.network/v2beta2/zz_generated.deepcopy.go +++ b/pkg/apis/akash.network/v2beta2/zz_generated.deepcopy.go @@ -417,6 +417,11 @@ func (in *ManifestService) DeepCopyInto(out *ManifestService) { *out = new(SchedulerParams) (*in).DeepCopyInto(*out) } + if in.Credentials != nil { + in, out := &in.Credentials, &out.Credentials + *out = new(ManifestServiceCredentials) + **out = **in + } return } @@ -430,6 +435,22 @@ func (in *ManifestService) DeepCopy() *ManifestService { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManifestServiceCredentials) DeepCopyInto(out *ManifestServiceCredentials) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManifestServiceCredentials. +func (in *ManifestServiceCredentials) DeepCopy() *ManifestServiceCredentials { + if in == nil { + return nil + } + out := new(ManifestServiceCredentials) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ManifestServiceExpose) DeepCopyInto(out *ManifestServiceExpose) { *out = *in