-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
53 lines (43 loc) · 858 Bytes
/
main.go
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
package main
import (
"fmt"
"os"
"github.com/riywo/loginshell"
"github.com/urfave/cli/v2"
)
var (
version = "dev"
)
func main() {
app := &cli.App{
Name: "ksw",
Usage: "kubeconfig switcher",
Description: "start a new shell with specified kube context",
Action: appAction,
ArgsUsage: "[context-name]",
HideHelpCommand: true,
Version: version,
HideVersion: false,
}
if err := app.Run(os.Args); err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
}
func appAction(c *cli.Context) error {
var contextName string
if c.Args().Len() == 0 {
c, err := findContext()
if err != nil {
return err
}
contextName = c
} else {
contextName = c.Args().First()
}
shell, err := loginshell.Shell()
if err != nil {
return err
}
return startShell(shell, contextName)
}