Closed
Description
With the new upgrade to controller-runtime, as it is using ginkgo v2 I am unsure how to edit my test suite so it can adapt to the sigs.k8s.io/controller-runtime/pkg/envtest/printer package being removed.
For instance, I have this code:
[]Reporter{printer.NewlineReporter{}})
I am trying to edit this to use the GinkgoWriter.Println() functionality, but I keep running into errors, so what is the best way to alter the code above to not use the printer package and use the ginkgo v2 functions?