05. Exercise: Logging
Exercise: Logging
Logging is an important concept to master for professional software development. Test your skills in this exercise by getting the logs from a running pod.
Instructions
- Start your kubernetes application
- Grab your application logs for your pod (given a pod named
my-pod) by running this command:kubectl logs my-pod
It's that easy to gather your logs with Kubernetes!