From 4445f79eb505774ea4d037a3d129ab5c8c7a29a4 Mon Sep 17 00:00:00 2001 From: Ivan Aracki Date: Tue, 2 Jul 2019 13:57:34 +0200 Subject: [PATCH] stern: add page (#3159) --- pages/common/stern.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/stern.md diff --git a/pages/common/stern.md b/pages/common/stern.md new file mode 100644 index 000000000..641541687 --- /dev/null +++ b/pages/common/stern.md @@ -0,0 +1,28 @@ +# stern + +> Tail multiple pods and containers from Kubernetes. +> More information: . + +- Tail all pods within a current namespace: + +`stern .` + +- Tail all pods with a specific status: + +`stern . --container-state {{running|waiting|terminated}}` + +- Tail all pods that matches a given regular expression: + +`stern {{pod_query}}` + +- Tail matched pods from all namespaces: + +`stern {{pod_query}} --all-namespaces` + +- Tail matched pods from 15 minutes ago: + +`stern {{pod_query}} --since {{15m}}` + +- Tail matched pods with a specific label: + +`stern {{pod_query}} --selector {{release=canary}}`