When I type kubectl log pod/yourpod
to get my pod's logs, behind the scene, k8s must read the log from somewhere in my pod.
What's the default path to the log generated by my container? How to change the path?
Inside my container, my process uses sigs.k8s.io/controller-runtime/pkg/log
to generate logs.