forked from kubernetes-sigs/krew-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiexec.yaml
37 lines (35 loc) · 1.23 KB
/
iexec.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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: iexec
spec:
version: "v1.0.0"
platforms:
- selector:
matchExpressions:
- {key: os, operator: In, values: [linux]}
uri: https://github.com/gabeduke/kubectl-iexec/releases/download/1.0.0/kubectl-iexec_1.0.0_Linux_x86_64.tar.gz
sha256: "f956cd783c18e36ab36d9f754bfa3a1a045e0a8b932891da2168638569e3e149"
files:
- from: "/kubectl-iexec"
to: "."
bin: "./kubectl-iexec"
- selector:
matchExpressions:
- {key: os, operator: In, values: [darwin]}
uri: https://github.com/gabeduke/kubectl-iexec/releases/download/1.0.0/kubectl-iexec_1.0.0_Darwin_x86_64.tar.gz
sha256: "982cb623473bc55d33471a2e5aa21359b8f503449d9bd70ffb6a5fbecdc32e6a"
files:
- from: "/kubectl-iexec"
to: "."
bin: "./kubectl-iexec"
shortDescription: Interactive selection tool for `kubectl exec`
homepage: https://github.com/gabeduke/kubectl-iexec
description: |
Interactive pod and container selector for `kubectl exec`
caveats: |
Read documentaion at: https://github.com/gabeduke/kubectl-iexec
To get help run: kubectl iexec --help
Examples:
Run command in container:
kubectl iexec [pod] [command]