-
Notifications
You must be signed in to change notification settings - Fork 3
/
.krew.yaml
47 lines (46 loc) · 1.9 KB
/
.krew.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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: istiolog
spec:
version: {{ .TagName }}
homepage: https://github.com/TejaBeta/kubectl-istiolog
shortDescription: Manipulate istio-proxy logging level without istioctl.
description: |
kubectl-istiolog plugin enables ops-teams and developers to view istio
sidecar(istio-proxy) logs by manipulating the logger names and logger
levels of Envoy instance without any additional tools like istioctl. The
plugin can also tail istio-proxy logs.
Example:
kubectl istiolog my-podname-0 -n dev -l debug -f
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/TejaBeta/kubectl-istiolog/releases/download/{{ .TagName }}/kubectl-istiolog_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName }}
bin: kubectl-istiolog
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/TejaBeta/kubectl-istiolog/releases/download/{{ .TagName }}/kubectl-istiolog_{{ .TagName }}_Darwin_arm64.tar.gz" .TagName }}
bin: kubectl-istiolog
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/TejaBeta/kubectl-istiolog/releases/download/{{ .TagName }}/kubectl-istiolog_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName }}
bin: kubectl-istiolog
- selector:
matchLabels:
os: linux
arch: arm64
{{addURIAndSha "https://github.com/TejaBeta/kubectl-istiolog/releases/download/{{ .TagName }}/kubectl-istiolog_{{ .TagName }}_Linux_arm64.tar.gz" .TagName }}
bin: kubectl-istiolog
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/TejaBeta/kubectl-istiolog/releases/download/{{ .TagName }}/kubectl-istiolog_{{ .TagName }}_windows_x86_64.tar.gz" .TagName }}
bin: kubectl-istiolog.exe