Skip to content

Commit

Permalink
Always include all CRDs for writing them out
Browse files Browse the repository at this point in the history
  • Loading branch information
mallardduck committed Oct 10, 2024
1 parent 833599c commit b9fa7ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/crd/crds.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func printCrd(out io.Writer, objs []runtime.Object) error {

// Objects returns runtime.Objects for every CRD or CRD Dependency this operator relies on
func Objects(v1beta1 bool) (crds, crdDeps []runtime.Object, err error) {
crdDefs, crdDepDefs := List()
crdDefs, crdDepDefs := List(false)
crds, err = objects(v1beta1, crdDefs)
if err != nil {
return nil, nil, err
Expand Down

0 comments on commit b9fa7ac

Please sign in to comment.