From fe52bef88e88890b60ef8740b79c8d0d17140a6e Mon Sep 17 00:00:00 2001 From: ada mancini Date: Thu, 26 Feb 2026 20:30:03 -0500 Subject: [PATCH] Regenerate deepcopy for IngressClass type --- .../v1beta2/zz_generated.deepcopy.go | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/pkg/apis/troubleshoot/v1beta2/zz_generated.deepcopy.go b/pkg/apis/troubleshoot/v1beta2/zz_generated.deepcopy.go index c0ace33f..fc3bfaad 100644 --- a/pkg/apis/troubleshoot/v1beta2/zz_generated.deepcopy.go +++ b/pkg/apis/troubleshoot/v1beta2/zz_generated.deepcopy.go @@ -65,6 +65,11 @@ func (in *Analyze) DeepCopyInto(out *Analyze) { *out = new(StorageClass) (*in).DeepCopyInto(*out) } + if in.IngressClass != nil { + in, out := &in.IngressClass, &out.IngressClass + *out = new(IngressClass) + (*in).DeepCopyInto(*out) + } if in.CustomResourceDefinition != nil { in, out := &in.CustomResourceDefinition, &out.CustomResourceDefinition *out = new(CustomResourceDefinition) @@ -3039,6 +3044,33 @@ func (in *Ingress) DeepCopy() *Ingress { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *IngressClass) DeepCopyInto(out *IngressClass) { + *out = *in + in.AnalyzeMeta.DeepCopyInto(&out.AnalyzeMeta) + if in.Outcomes != nil { + in, out := &in.Outcomes, &out.Outcomes + *out = make([]*Outcome, len(*in)) + for i := range *in { + if (*in)[i] != nil { + in, out := &(*in)[i], &(*out)[i] + *out = new(Outcome) + (*in).DeepCopyInto(*out) + } + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressClass. +func (in *IngressClass) DeepCopy() *IngressClass { + if in == nil { + return nil + } + out := new(IngressClass) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *JobStatus) DeepCopyInto(out *JobStatus) { *out = *in