-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdeisctl.go
More file actions
144 lines (133 loc) · 3.99 KB
/
deisctl.go
File metadata and controls
144 lines (133 loc) · 3.99 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package main
import (
"fmt"
"os"
"strconv"
"github.com/deis/deisctl/client"
"github.com/deis/deisctl/cmd"
"github.com/deis/deisctl/constant"
"github.com/deis/deisctl/updatectl"
"github.com/deis/deisctl/utils"
docopt "github.com/docopt/docopt-go"
)
func exit(err error, code int) {
fmt.Printf("Error: %v\n", err)
os.Exit(code)
}
func Update(args []string) {
if len(args) != 4 {
fmt.Println("unsufficient args")
fmt.Println("usage: deisctl update instance deis")
return
}
if args[2] != "instance" && args[3] != "deis" {
fmt.Println("wrong args ")
fmt.Println("usage: deisctl update instance deis")
return
}
Args := []string{
"instance",
"deis",
"--clients-per-app=1",
"--min-sleep=5",
"--max-sleep=10",
}
if err := utils.Execute(constant.HooksDir + "pre-update"); err != nil {
fmt.Println("pre-updatehook failed")
}
updatectl.Update(Args)
if err := utils.Execute(constant.HooksDir + "post-update"); err != nil {
fmt.Println("post-updatehook failed")
}
}
func setGlobalFlags(args map[string]interface{}) {
client.Flags.Debug = args["--debug"].(bool)
client.Flags.Version = args["--version"].(bool)
client.Flags.Endpoint = args["--endpoint"].(string)
client.Flags.EtcdKeyPrefix = args["--etcd-key-prefix"].(string)
client.Flags.EtcdKeyFile = args["--etcd-keyfile"].(string)
client.Flags.EtcdCertFile = args["--etcd-certfile"].(string)
client.Flags.EtcdCAFile = args["--etcd-cafile"].(string)
//client.Flags.UseAPI = args["--experimental-api"].(bool)
client.Flags.KnownHostsFile = args["--known-hosts-file"].(string)
client.Flags.StrictHostKeyChecking = args["--strict-host-key-checking"].(bool)
timeout, _ := strconv.ParseFloat(args["--request-timeout"].(string), 64)
client.Flags.RequestTimeout = timeout
tunnel := args["--tunnel"].(string)
if tunnel != "" {
client.Flags.Tunnel = tunnel
} else {
client.Flags.Tunnel = os.Getenv("DEISCTL_TUNNEL")
}
}
func main() {
usage := `Deis Control Utility
Usage:
deisctl <command> [<target>...] [options]
Example Commands:
deisctl install
deisctl uninstall
deisctl list
deisctl scale router=2
deisctl start router@2
deisctl stop router builder
deisctl status controller
deisctl journal controller
Options:
--debug print debug information to stderr
--version print version and exit
--endpoint=<url> etcd endpoint for fleet [default: http://127.0.0.1:4001]
--etcd-key-prefix=<path> keyspace for fleet data in etcd [default: /_coreos.com/fleet/]
--etcd-keyfile=<path> etcd key file authentication [default: ]
--etcd-certfile=<path> etcd cert file authentication [default: ]
--etcd-cafile=<path> etcd CA file authentication [default: ]
--known-hosts-file=<path> file used to store remote machine fingerprints [default: ~/.ssh/known_hosts]
--strict-host-key-checking verify SSH host keys [default: true]
--tunnel=<host> establish an SSH tunnel for communication with fleet and etcd [default: ]
--request-timeout=<secs> amount of time to allow a single request before considering it failed. [default: 3.0]
`
// parse command-line arguments
args, err := docopt.Parse(usage, nil, true, "", true)
if err != nil {
exit(err, 2)
}
command := args["<command>"]
targets := args["<target>"].([]string)
setGlobalFlags(args)
// construct a client
c, err := client.NewClient()
if err != nil {
exit(err, 1)
}
// dispatch the command
switch command {
case "list":
err = cmd.ListUnits(c)
case "list-units":
err = cmd.ListUnits(c)
case "list-unit-files":
err = cmd.ListUnitFiles(c)
case "scale":
err = cmd.Scale(c, targets)
case "start":
err = cmd.Start(c, targets)
case "stop":
err = cmd.Stop(c, targets)
case "status":
err = cmd.Status(c, targets)
case "journal":
err = cmd.Journal(c, targets)
case "install":
err = cmd.Install(c, targets)
case "uninstall":
err = cmd.Uninstall(c, targets)
case "update":
Update(os.Args)
default:
fmt.Printf(usage)
os.Exit(2)
}
if err != nil {
exit(err, 1)
}
}