-
Notifications
You must be signed in to change notification settings - Fork 518
/
Copy pathtail.yaml
110 lines (100 loc) · 3.23 KB
/
tail.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: tail
spec:
version: "v0.17.4"
platforms:
- uri: https://github.com/boz/kail/releases/download/v0.17.4/kail_v0.17.4_darwin_arm64.tar.gz
sha256: 61c331113e3cdc40133f4b5f7a200862e281c23af3f6017bb71a71bae83b0caa
selector:
matchLabels:
os: darwin
arch: arm64
bin: kail
files:
- from: "kail"
to: "."
- from: LICENSE.txt
to: .
- uri: https://github.com/boz/kail/releases/download/v0.17.4/kail_v0.17.4_darwin_amd64v2.tar.gz
sha256: 88f2f514760312d2f029e69e733575b65563c08f38f6e238f1f2bcc7f57fd661
selector:
matchLabels:
os: darwin
arch: amd64
bin: kail
files:
- from: "kail"
to: "."
- from: LICENSE.txt
to: .
- uri: https://github.com/boz/kail/releases/download/v0.17.4/kail_v0.17.4_linux_arm64.tar.gz
sha256: c29c6e69b2ed1a8d8ae1ce00bf5857d2984c820c5c3b83bac9b9f04bc4b372d3
selector:
matchLabels:
os: linux
arch: arm64
bin: kail
files:
- from: "kail"
to: "."
- from: LICENSE.txt
to: .
- uri: https://github.com/boz/kail/releases/download/v0.17.4/kail_v0.17.4_linux_amd64v2.tar.gz
sha256: aebdf0401a46b26189eeec2cdd8539675805fcfa68a4561c9ae1993f275c3358
selector:
matchLabels:
os: linux
arch: amd64
bin: kail
files:
- from: "kail"
to: "."
- from: LICENSE.txt
to: .
- uri: https://github.com/boz/kail/releases/download/v0.17.4/kail_v0.17.4_windows_arm64.tar.gz
sha256: e3313c1d02ec9192694484cd59ddc59fd8f10d07a89bc551d8dd6e2e6bdaa5ec
selector:
matchLabels:
os: windows
arch: arm64
bin: kail.exe
files:
- from: "kail.exe"
to: "."
- from: LICENSE.txt
to: .
- uri: https://github.com/boz/kail/releases/download/v0.17.4/kail_v0.17.4_windows_amd64v2.tar.gz
sha256: 393a2951ce0828ea2f796a12504f792033ad2b931e33428a2f57dee5741eba09
selector:
matchLabels:
os: windows
arch: amd64
bin: kail.exe
files:
- from: "kail.exe"
to: "."
- from: LICENSE.txt
to: .
homepage: https://github.com/boz/kail
shortDescription: Stream logs from multiple pods and containers using simple, dynamic source selection.
description: |-
Kail https://github.com/boz/kail - "Just show me the logs"
Stream logs from all matched containers of all matched pods. Match pods by service,
replicaset, deployment, and others. Adjusts to a changing cluster - pods are
added and removed from logging as they fall in or out of the selection.
Documentation:
See https://github.com/boz/kail or
$ kubectl tail --help
Usage:
# match all pods
$ kubectl tail
# match pods in the 'frontend' namespace
$ kubectl tail --ns staging
# match pods belonging to a replicaset named 'workers' in any namespace.
$ kubectl tail --rs workers
# match pods belonging to the replicaset named 'workers' only in the 'staging' namespace
$ kubectl tail --rs staging/workers
# match pods belonging to both the service "frontend" and the deployment "webapp"
$ kubectl tail --svc frontend --deploy webapp