kubetail: add page (#2623)

This commit is contained in:
Ivan Aracki
2018-12-01 22:19:05 +01:00
committed by Owen Voke
parent 5e32343c5c
commit 36c6b40181

19
pages/common/kubetail.md Normal file
View File

@@ -0,0 +1,19 @@
# kubetail
> Utility to tail multiple Kubernetes pod logs at the same time.
- Tail the logs of multiple pods (whose name starts with "my_app") in one go:
`kubetail {{my_app}}`
- Tail only a specific container from multiple pods:
`kubetail {{my_app}} -c {{my_container}}`
- To tail multiple containers from multiple pods:
`kubetail {{my_app}} -c {{my_container_1}} -c {{my_container_2}}`
- To tail multiple applications at the same time seperate them by comma:
`kubetail {{my_app_1}},{{my_app_2}}`