Forrest logo
back to context overview

kubetail

List of commands for kubetail:

  • kubetail:tldr:04bfc kubetail: To tail multiple applications at the same time separate them by comma.
    $ kubetail ${my_app_1},${my_app_2}
    try on your machine
    explain this command
  • kubetail:tldr:0d200 kubetail: To tail multiple containers from multiple pods.
    $ kubetail ${my_app} -c ${my_container_1} -c ${my_container_2}
    try on your machine
    explain this command
  • kubetail:tldr:c86b5 kubetail: Tail the logs of multiple pods (whose name starts with "my_app") in one go.
    $ kubetail ${my_app}
    try on your machine
    explain this command
  • kubetail:tldr:eb558 kubetail: Tail only a specific container from multiple pods.
    $ kubetail ${my_app} -c ${my_container}
    try on your machine
    explain this command
back to context overview