-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.krew.yaml
40 lines (40 loc) · 1.53 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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: iexec
spec:
version: {{ .TagName }}
homepage: https://github.com/gabeduke/kubectl-iexec
platforms:
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/gabeduke/kubectl-iexec/releases/download/{{ .TagName }}/kubectl-iexec_{{ .TagName }}_Darwin_arm64.tar.gz" .TagName | indent 6 }}
bin: kubectl-iexec
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/gabeduke/kubectl-iexec/releases/download/{{ .TagName }}/kubectl-iexec_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName | indent 6 }}
bin: kubectl-iexec
- selector:
matchLabels:
os: linux
arch: arm64
{{addURIAndSha "https://github.com/gabeduke/kubectl-iexec/releases/download/{{ .TagName }}/kubectl-iexec_{{ .TagName }}_Linux_arm64.tar.gz" .TagName | indent 6}}
bin: kubectl-iexec
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/gabeduke/kubectl-iexec/releases/download/{{ .TagName }}/kubectl-iexec_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName | indent 6}}
bin: kubectl-iexec
shortDescription: Interactive selection tool for `kubectl exec`
description: |
Interactive pod and container selector for `kubectl exec`
caveats: |
To get help run: kubectl iexec --help
Examples:
Run command in container:
kubectl iexec [pod] [command]