-
Notifications
You must be signed in to change notification settings - Fork 63
/
create.go
111 lines (92 loc) · 2.85 KB
/
create.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
// 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 create
import (
"context"
"fmt"
"github.com/MakeNowJust/heredoc"
"github.com/spf13/cobra"
kraftcloud "sdk.kraft.cloud"
kcvolumes "sdk.kraft.cloud/volumes"
"kraftkit.sh/cmdfactory"
"kraftkit.sh/config"
"kraftkit.sh/internal/cli/kraft/cloud/utils"
"kraftkit.sh/iostreams"
)
type CreateOptions struct {
Auth *config.AuthConfig `noattribute:"true"`
Client kcvolumes.VolumesService `noattribute:"true"`
Metro string `noattribute:"true"`
Name string `local:"true" size:"name" short:"n"`
SizeMB int `local:"true" long:"size" short:"s" usage:"Size in MB"`
Token string `noattribute:"true"`
}
// Create a KraftCloud persistent volume.
func Create(ctx context.Context, opts *CreateOptions) (*kcvolumes.CreateResponseItem, error) {
var err error
if opts == nil {
opts = &CreateOptions{}
}
if opts.Auth == nil {
opts.Auth, err = config.GetKraftCloudAuthConfig(ctx, opts.Token)
if err != nil {
return nil, fmt.Errorf("could not retrieve credentials: %w", err)
}
}
if opts.Client == nil {
opts.Client = kraftcloud.NewVolumesClient(
kraftcloud.WithToken(config.GetKraftCloudTokenAuthConfig(*opts.Auth)),
)
}
createResp, err := opts.Client.WithMetro(opts.Metro).Create(ctx, opts.Name, opts.SizeMB)
if err != nil {
return nil, fmt.Errorf("creating volume: %w", err)
}
create, err := createResp.FirstOrErr()
if err != nil {
return nil, fmt.Errorf("creating volume: %w", err)
}
return create, nil
}
func NewCmd() *cobra.Command {
cmd, err := cmdfactory.New(&CreateOptions{}, cobra.Command{
Short: "Create a persistent volume",
Use: "create [FLAGS]",
Args: cobra.NoArgs,
Aliases: []string{"crt"},
Long: heredoc.Doc(`
Create a new persistent volume.
`),
Example: heredoc.Doc(`
# Create a new persistent 100MiB volume named "my-volume"
$ kraft cloud volume create --size 100 --name my-volume
`),
Annotations: map[string]string{
cmdfactory.AnnotationHelpGroup: "kraftcloud-vol",
},
})
if err != nil {
panic(err)
}
return cmd
}
func (opts *CreateOptions) Pre(cmd *cobra.Command, _ []string) error {
if opts.SizeMB == 0 {
return fmt.Errorf("must specify --size flag")
}
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 *CreateOptions) Run(ctx context.Context, _ []string) error {
volume, err := Create(ctx, opts)
if err != nil {
return fmt.Errorf("could not create volume: %w", err)
}
_, err = fmt.Fprintln(iostreams.G(ctx).Out, volume.UUID)
return err
}