Table of Contents
multik8s
is a tool to access pod information across multiple Kubernetes contexts at once.
It allows to tail logs from several pods in several contexts and also to list pods.
Tail logs from pods :
multik8s get logs [-n namespace] [-p podName] [--follow] [--tail nbr]
-n, --namespace string Kubernetes namespace (should be the exact name) (default "default")
-p, --podname string Kubernetes pod name (works as a wildcard)
-f, --follow Choose whether or not to follow log stream
-t, --tail int The number of lines from the end of the logs to show (default 5)
List pods :
multik8s get pods [-n namespace] [-p podName]
-n, --namespace string Kubernetes namespace (should be the exact name) (default "default")
-p, --podname string Kubernetes pod name (works as a wildcard)
make build
-
- Download the latest tar released from Github
- Extract the archive
- Move the binary to the location of your choice
multik8s update