-
Notifications
You must be signed in to change notification settings - Fork 787
/
create_domain.go
58 lines (47 loc) · 1.39 KB
/
create_domain.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
package create
import (
"github.com/jenkins-x/jx/v2/pkg/cmd/create/options"
"github.com/jenkins-x/jx/v2/pkg/cmd/helper"
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/v2/pkg/cmd/opts"
"github.com/jenkins-x/jx/v2/pkg/cmd/templates"
)
var (
createDomainLong = templates.LongDesc(`
Create a Domain in a managed DNS service such as GCP
`)
)
const (
// Domain to create within managed DNS services
Domain = "domain"
)
// DomainOptions the options for the create spring command
type DomainOptions struct {
options.CreateOptions
SkipMessages bool
}
// NewCmdCreateDomain creates a command object for the "create" command
func NewCmdCreateDomain(commonOpts *opts.CommonOptions) *cobra.Command {
options := &DomainOptions{
CreateOptions: options.CreateOptions{
CommonOptions: commonOpts,
},
}
cmd := &cobra.Command{
Use: "domain",
Short: "Create a domain in a managed DNS service provider",
Long: createDomainLong,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
helper.CheckErr(err)
},
}
cmd.AddCommand(NewCmdCreateDomainGKE(commonOpts))
return cmd
}
// AddDomainOptionsArguments adds common Domain flags to the given cobra command
func AddDomainOptionsArguments(cmd *cobra.Command, options *DomainOptions) {
cmd.Flags().StringVarP(&options.Domain, Domain, "d", "", "The Domain you wish to be managed")
}