-
Notifications
You must be signed in to change notification settings - Fork 787
/
edit_buildpack.go
104 lines (91 loc) · 2.75 KB
/
edit_buildpack.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
package cmd
import (
"io"
"github.com/jenkins-x/jx/pkg/apis/jenkins.io/v1"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
)
var (
editBuildpackLong = templates.LongDesc(`
Edits the build pack configuration for your team
`)
editBuildpackExample = templates.Examples(`
# Edit the build pack configuration for your team
jx edit buildpack
For more documentation see: [https://jenkins-x.io/architecture/build-packs/](https://jenkins-x.io/architecture/build-packs/)
`)
)
// EditBuildpackOptions the options for the create spring command
type EditBuildpackOptions struct {
EditOptions
BuildPackURL string
BuildPackRef string
}
// NewCmdEditBuildpack creates a command object for the "create" command
func NewCmdEditBuildpack(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &EditBuildpackOptions{
EditOptions: EditOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: buildPack,
Short: "Edits the build pack configuration for your team",
Aliases: buildPacksAliases,
Long: editBuildpackLong,
Example: editBuildpackExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.BuildPackURL, "url", "u", "", "The URL for the build pack Git repository")
cmd.Flags().StringVarP(&options.BuildPackRef, "ref", "r", "", "The Git reference (branch,tag,sha) in the Git repository touse")
options.addCommonFlags(cmd)
return cmd
}
// Run implements the command
func (o *EditBuildpackOptions) Run() error {
buildPackURL := o.BuildPackURL
BuildPackRef := o.BuildPackRef
if !o.BatchMode {
teamSettings, err := o.TeamSettings()
if err != nil {
return err
}
if buildPackURL == "" {
buildPackURL, err = util.PickValue("Build pack git clone URL:", teamSettings.BuildPackURL, true, o.In, o.Out, o.Err)
if err != nil {
return err
}
}
if BuildPackRef == "" {
BuildPackRef, err = util.PickValue("Build pack git ref:", teamSettings.BuildPackRef, true, o.In, o.Out, o.Err)
if err != nil {
return err
}
}
}
callback := func(env *v1.Environment) error {
teamSettings := &env.Spec.TeamSettings
if buildPackURL != "" {
teamSettings.BuildPackURL = buildPackURL
}
if BuildPackRef != "" {
teamSettings.BuildPackRef = BuildPackRef
}
log.Infof("Setting the team build pack to repo: %s ref: %s\n", util.ColorInfo(buildPackURL), util.ColorInfo(BuildPackRef))
return nil
}
return o.ModifyDevEnvironment(callback)
}