forked from kubernetes-sigs/krew-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pod-dive.yaml
61 lines (58 loc) · 2.04 KB
/
pod-dive.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: pod-dive
spec:
version: "v0.1.4"
platforms:
- selector:
matchLabels:
os: linux
arch: amd64
uri: https://github.com/caiobegotti/pod-dive/releases/download/v0.1.4/pod-dive-amd64-linux.tar.gz
sha256: "663d7f981b3c01dc13bfc2119b0abd0b5b20c85b4b755f6fec9e8cb8be34f343"
files:
- from: "./LICENSE"
to: "."
- from: "./pod-dive-amd64-linux"
to: "."
bin: "pod-dive-amd64-linux"
- selector:
matchLabels:
os: darwin
arch: amd64
uri: https://github.com/caiobegotti/pod-dive/releases/download/v0.1.4/pod-dive-amd64-darwin.tar.gz
sha256: "d314e57e5807afc4669c5a25852a733f1bc3140441bbd397b5666b22b5090617"
files:
- from: "./LICENSE"
to: "."
- from: "./pod-dive-amd64-darwin"
to: "."
bin: "pod-dive-amd64-darwin"
- selector:
matchLabels:
os: windows
arch: amd64
uri: https://github.com/caiobegotti/pod-dive/releases/download/v0.1.4/pod-dive-amd64-windows.exe.zip
sha256: "199481b1a5caffe419cf7d2972f19043655ace20ca79394784636e98693b1540"
files:
- from: "./LICENSE"
to: "."
- from: "./pod-dive-amd64-windows.exe"
to: "."
bin: "pod-dive-amd64-windows.exe"
shortDescription: Shows a pod's workload tree and info inside a node
homepage: https://github.com/caiobegotti/pod-dive
description: |
Dives into a node after the desired pod and returns data associated
with the pod no matter where it is running, such as its origin workload,
namespace, the node where it is running and its node pod siblings, as
well basic health status of it all.
The purpose is to have meaningful pod info at a glance without needing to
run multiple kubectl commands to see what else is running next to your
pod in a given node inside a huge cluster, because sometimes all
you've got from an alert is the pod name.
Usage
$ kubectl pod-dive [pod name]
For additional options
$ kubectl pod-dive --help