-
Currently, with package
As you can see each line is corresponding with a specific controller and kind (Guestbook and Foo). so far so good. Now if I upgrade the
It basically takes info from the last imported controller and uses them for all controllers logs. Is it supposed to be like this because Kubebuilder is not supporting package Best |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
If you upgrade the go mod on your project and then, build a new manager (Operator) with. The new Operator image will be using the new dep added. Kubebuilder is only a CLI tool to help out you scaffold the projects. Then, if you are looking to see differences in the logs because of https://github.com/kubernetes-sigs/controller-runtime/pull/1827/files you need to check if you do not need to change the default scaffold in the main. go to use it. |
Beta Was this translation helpful? Give feedback.
-
Working with Thank you |
Beta Was this translation helpful? Give feedback.
-
Closing since it is answered. |
Beta Was this translation helpful? Give feedback.
Working with
sigs.k8s.io/controller-runtime v0.12.1
is still resulting in the odd logs. Apparently, ths issue is resolved withsigs.k8s.io/controller-runtime v0.12.2
.Thank you