File tree Expand file tree Collapse file tree 4 files changed +36
-32
lines changed Expand file tree Collapse file tree 4 files changed +36
-32
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ func Test_readPluginFromURL(t *testing.T) {
33
33
}{
34
34
{
35
35
name : "successful request" ,
36
- url : server .URL + "/konfig .yaml" ,
37
- wantName : "konfig " ,
36
+ url : server .URL + "/ctx .yaml" ,
37
+ wantName : "ctx " ,
38
38
},
39
39
{
40
40
name : "invalid server" ,
Original file line number Diff line number Diff line change
1
+ apiVersion : krew.googlecontainertools.github.com/v1alpha2
2
+ kind : Plugin
3
+ metadata :
4
+ name : ctx
5
+ spec :
6
+ homepage : https://github.com/ahmetb/kubectx
7
+ shortDescription : Switch between contexts in your kubeconfig
8
+ version : v0.7.0
9
+ description : |
10
+ Also known as "kubectx", a utility to switch between context entries in
11
+ your kubeconfig file efficiently.
12
+ caveats : |
13
+ If fzf is installed on your machine, you can interactively choose
14
+ between the entries using the arrow keys, or by fuzzy searching
15
+ as you type.
16
+ See https://github.com/ahmetb/kubectx for customization and details.
17
+ platforms :
18
+ - selector :
19
+ matchExpressions :
20
+ - key : os
21
+ operator : In
22
+ values :
23
+ - darwin
24
+ - linux
25
+ uri : https://github.com/ahmetb/kubectx/archive/v0.7.1.tar.gz
26
+ sha256 : 6df4def2caf5a9c291310124098ad6c4c3123936ddd4080b382b9f7930a233ec
27
+ bin : kubectx
28
+ files :
29
+ - from : kubectx-*/kubectx
30
+ to : .
31
+ - from : kubectx-*/LICENSE
32
+ to : .
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ import (
37
37
const (
38
38
persistentIndexCache = "krew-persistent-index-cache"
39
39
krewBinaryEnv = "KREW_BINARY"
40
- validPlugin = "konfig" // a plugin in central index with small size
41
- validPlugin2 = "mtail" // a plugin in central index with small size
40
+ validPlugin = "ctx" // a plugin in central index with small size
41
+ validPlugin2 = "mtail" // a plugin in central index with small size
42
42
)
43
43
44
44
var (
You can’t perform that action at this time.
0 commit comments