-
Notifications
You must be signed in to change notification settings - Fork 63
/
start.go
132 lines (107 loc) · 3.45 KB
/
start.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
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
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2023, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package start
import (
"context"
"fmt"
"time"
"github.com/MakeNowJust/heredoc"
"github.com/spf13/cobra"
kraftcloud "sdk.kraft.cloud"
"kraftkit.sh/cmdfactory"
"kraftkit.sh/config"
"kraftkit.sh/internal/cli/kraft/cloud/utils"
"kraftkit.sh/log"
)
type StartOptions struct {
All bool `long:"all" usage:"Start all instances"`
Auth *config.AuthConfig `noattribute:"true"`
Client kraftcloud.KraftCloud `noattribute:"true"`
Metro string `noattribute:"true"`
Token string `noattribute:"true"`
Wait time.Duration `local:"true" long:"wait" short:"w" usage:"Timeout to wait for the instance to start (ms/s/m/h)"`
}
func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&StartOptions{}, cobra.Command{
Short: "Start an instance",
Use: "start [FLAGS] [UUID|NAME [UUID|NAME]...]",
Args: cobra.MinimumNArgs(1),
Aliases: []string{"str"},
Example: heredoc.Doc(`
# Start a KraftCloud instance by UUID
$ kraft cloud instance start 77d0316a-fbbe-488d-8618-5bf7a612477a
# Start a KraftCloud instance by name
$ kraft cloud instance start my-instance-431342
# Start multiple KraftCloud instances
$ kraft cloud instance start my-instance-431342 my-instance-other-2313
`),
Long: heredoc.Doc(`
Start an instance on KraftCloud from a stopped instance.
`),
Annotations: map[string]string{
cmdfactory.AnnotationHelpGroup: "kraftcloud-instance",
},
})
if err != nil {
panic(err)
}
return cmd
}
func (opts *StartOptions) Pre(cmd *cobra.Command, _ []string) error {
err := utils.PopulateMetroToken(cmd, &opts.Metro, &opts.Token)
if err != nil {
return fmt.Errorf("could not populate Metro and Token: %w", err)
}
return nil
}
func (opts *StartOptions) Run(ctx context.Context, args []string) error {
return Start(ctx, opts, args...)
}
// Start KraftCloud instance(s).
func Start(ctx context.Context, opts *StartOptions, args ...string) error {
var err error
if opts.Auth == nil {
opts.Auth, err = config.GetKraftCloudAuthConfig(ctx, opts.Token)
if err != nil {
return fmt.Errorf("could not retrieve credentials: %w", err)
}
}
if opts.Client == nil {
opts.Client = kraftcloud.NewClient(
kraftcloud.WithToken(config.GetKraftCloudTokenAuthConfig(*opts.Auth)),
)
}
if opts.Wait < time.Millisecond && opts.Wait != 0 {
return fmt.Errorf("wait timeout must be greater than 1ms")
}
timeout := int(opts.Wait.Milliseconds())
if opts.All {
args = []string{}
instListResp, err := opts.Client.Instances().WithMetro(opts.Metro).List(ctx)
if err != nil {
return fmt.Errorf("could not list instances: %w", err)
}
instList, err := instListResp.AllOrErr()
if err != nil {
return fmt.Errorf("could not list instances: %w", err)
}
if len(instList) == 0 {
log.G(ctx).Info("no instances found")
return nil
}
for _, instItem := range instList {
args = append(args, instItem.UUID)
}
}
log.G(ctx).Infof("starting %d instance(s)", len(args))
resp, err := opts.Client.Instances().WithMetro(opts.Metro).Start(ctx, timeout, args...)
if err != nil {
return fmt.Errorf("starting instance: %w", err)
}
if _, err = resp.FirstOrErr(); err != nil {
return fmt.Errorf("starting instance: %w", err)
}
return nil
}