Where are the logs of my K3s?
Originally published in LinkedIn . After having my home k3s cluster up and running, one of the first tools that I need to have with any system is something that give me access to the generated logs, for solving the possible problems, for security, or just to see what is happening under the hood. Until now in all my K8s journey I have been doing searches in the logs generated in my kubernetes cluster with the simple visualizations generated by the kubernetes-dashboard or else with the kubectl command, for example: kubectl -n pro-jellyfin logs services/jellyfin kubectl -n pro-jellyfin logs deployments/jellyfin That works well and has helped me to solve almost all the problems that appeared when deploying my cluster. But the results are not something fancy and good looking, so I wanted to deploy something to access these logs more conveniently. There are many tools capable of fetching the logs, stori...