Skip to content

Commit d83e11a

Browse files
committed
regenerated
1 parent ed0ad7e commit d83e11a

File tree

3 files changed

+95
-18
lines changed

3 files changed

+95
-18
lines changed

config/crds/troubleshoot.replicated.com_preflights.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,48 @@ spec:
475475
- outcomes
476476
- customResourceDefinitionName
477477
type: object
478+
imagePullSecret:
479+
properties:
480+
checkName:
481+
type: string
482+
outcomes:
483+
items:
484+
properties:
485+
fail:
486+
properties:
487+
message:
488+
type: string
489+
uri:
490+
type: string
491+
when:
492+
type: string
493+
type: object
494+
pass:
495+
properties:
496+
message:
497+
type: string
498+
uri:
499+
type: string
500+
when:
501+
type: string
502+
type: object
503+
warn:
504+
properties:
505+
message:
506+
type: string
507+
uri:
508+
type: string
509+
when:
510+
type: string
511+
type: object
512+
type: object
513+
type: array
514+
registryName:
515+
type: string
516+
required:
517+
- outcomes
518+
- registryName
519+
type: object
478520
ingress:
479521
properties:
480522
checkName:

config/crds/zz_generated.deepcopy.go

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ func (in *Analyze) DeepCopyInto(out *Analyze) {
3636
*out = new(AnalyzeSecret)
3737
(*in).DeepCopyInto(*out)
3838
}
39+
if in.ImagePullSecret != nil {
40+
in, out := &in.ImagePullSecret, &out.ImagePullSecret
41+
*out = new(ImagePullSecret)
42+
(*in).DeepCopyInto(*out)
43+
}
3944
}
4045

4146
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Analyze.
@@ -713,6 +718,33 @@ func (in *HTTP) DeepCopy() *HTTP {
713718
return out
714719
}
715720

721+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
722+
func (in *ImagePullSecret) DeepCopyInto(out *ImagePullSecret) {
723+
*out = *in
724+
out.AnalyzeMeta = in.AnalyzeMeta
725+
if in.Outcomes != nil {
726+
in, out := &in.Outcomes, &out.Outcomes
727+
*out = make([]*Outcome, len(*in))
728+
for i := range *in {
729+
if (*in)[i] != nil {
730+
in, out := &(*in)[i], &(*out)[i]
731+
*out = new(Outcome)
732+
(*in).DeepCopyInto(*out)
733+
}
734+
}
735+
}
736+
}
737+
738+
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImagePullSecret.
739+
func (in *ImagePullSecret) DeepCopy() *ImagePullSecret {
740+
if in == nil {
741+
return nil
742+
}
743+
out := new(ImagePullSecret)
744+
in.DeepCopyInto(out)
745+
return out
746+
}
747+
716748
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
717749
func (in *Ingress) DeepCopyInto(out *Ingress) {
718750
*out = *in

pkg/apis/troubleshoot/v1beta1/zz_generated.deepcopy.go

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,6 @@ func (in *CustomResourceDefinition) DeepCopy() *CustomResourceDefinition {
653653
}
654654

655655
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
656-
<<<<<<< HEAD
657656
func (in *Exec) DeepCopyInto(out *Exec) {
658657
*out = *in
659658
if in.Selector != nil {
@@ -691,25 +690,10 @@ func (in *Get) DeepCopyInto(out *Get) {
691690
*out = make(map[string]string, len(*in))
692691
for key, val := range *in {
693692
(*out)[key] = val
694-
=======
695-
func (in *ImagePullSecret) DeepCopyInto(out *ImagePullSecret) {
696-
*out = *in
697-
out.AnalyzeMeta = in.AnalyzeMeta
698-
if in.Outcomes != nil {
699-
in, out := &in.Outcomes, &out.Outcomes
700-
*out = make([]*Outcome, len(*in))
701-
for i := range *in {
702-
if (*in)[i] != nil {
703-
in, out := &(*in)[i], &(*out)[i]
704-
*out = new(Outcome)
705-
(*in).DeepCopyInto(*out)
706-
}
707-
>>>>>>> Image pull secrets
708693
}
709694
}
710695
}
711696

712-
<<<<<<< HEAD
713697
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Get.
714698
func (in *Get) DeepCopy() *Get {
715699
if in == nil {
@@ -746,14 +730,33 @@ func (in *HTTP) DeepCopy() *HTTP {
746730
return nil
747731
}
748732
out := new(HTTP)
749-
=======
733+
in.DeepCopyInto(out)
734+
return out
735+
}
736+
737+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
738+
func (in *ImagePullSecret) DeepCopyInto(out *ImagePullSecret) {
739+
*out = *in
740+
out.AnalyzeMeta = in.AnalyzeMeta
741+
if in.Outcomes != nil {
742+
in, out := &in.Outcomes, &out.Outcomes
743+
*out = make([]*Outcome, len(*in))
744+
for i := range *in {
745+
if (*in)[i] != nil {
746+
in, out := &(*in)[i], &(*out)[i]
747+
*out = new(Outcome)
748+
(*in).DeepCopyInto(*out)
749+
}
750+
}
751+
}
752+
}
753+
750754
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImagePullSecret.
751755
func (in *ImagePullSecret) DeepCopy() *ImagePullSecret {
752756
if in == nil {
753757
return nil
754758
}
755759
out := new(ImagePullSecret)
756-
>>>>>>> Image pull secrets
757760
in.DeepCopyInto(out)
758761
return out
759762
}

0 commit comments

Comments
 (0)