-
Notifications
You must be signed in to change notification settings - Fork 240
/
kill.go
74 lines (58 loc) · 1.56 KB
/
kill.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package machine
import (
"context"
"fmt"
"github.com/spf13/cobra"
"github.com/superfly/flyctl/flaps"
"github.com/superfly/flyctl/internal/app"
"github.com/superfly/flyctl/internal/command"
"github.com/superfly/flyctl/internal/flag"
"github.com/superfly/flyctl/iostreams"
)
func newKill() *cobra.Command {
const (
short = "Kill (SIGKILL) a Fly machine"
long = short + "\n"
usage = "kill <id>"
)
cmd := command.New(usage, short, long, runMachineKill,
command.RequireSession,
command.LoadAppNameIfPresent,
)
cmd.Args = cobra.ExactArgs(1)
flag.Add(
cmd,
flag.App(),
flag.AppConfig(),
)
return cmd
}
func runMachineKill(ctx context.Context) (err error) {
var (
appName = app.NameFromContext(ctx)
machineID = flag.FirstArg(ctx)
io = iostreams.FromContext(ctx)
)
app, err := appFromMachineOrName(ctx, machineID, appName)
if err != nil {
return err
}
flapsClient, err := flaps.New(ctx, app)
if err != nil {
return fmt.Errorf("could not make flaps client: %w", err)
}
current, err := flapsClient.Get(ctx, machineID)
if err != nil {
return fmt.Errorf("could not retrieve machine %s", machineID)
}
if current.State == "destroyed" {
return fmt.Errorf("machine %s has already been destroyed", machineID)
}
fmt.Fprintf(io.Out, "machine %s was found and is currently in a %s state, attempting to kill...\n", machineID, current.State)
err = flapsClient.Kill(ctx, machineID)
if err != nil {
return fmt.Errorf("could not kill machine %s: %w", machineID, err)
}
fmt.Fprintln(io.Out, "kill signal has been sent")
return nil
}