forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upgrade_platform.go
102 lines (90 loc) · 2.63 KB
/
upgrade_platform.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
package cmd
import (
"io"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
)
var (
upgrade_platform_long = templates.LongDesc(`
Upgrades the Jenkins X platform if there is a newer release
`)
upgrade_platform_example = templates.Examples(`
# Upgrades the Jenkins X platform
jx upgrade platform
`)
)
// UpgradePlatformOptions the options for the create spring command
type UpgradePlatformOptions struct {
CreateOptions
Version string
ReleaseName string
Chart string
Namespace string
Set string
InstallFlags InstallFlags
}
// NewCmdUpgradePlatform defines the command
func NewCmdUpgradePlatform(f Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &UpgradePlatformOptions{
CreateOptions: CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "platform",
Short: "Upgrades the Jenkins X platform if there is a new release available",
Aliases: []string{"token"},
Long: upgrade_platform_long,
Example: upgrade_platform_example,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.Namespace, "namespace", "", "", "The Namespace to promote to")
cmd.Flags().StringVarP(&options.ReleaseName, "name", "n", "jenkins-x", "The release name")
cmd.Flags().StringVarP(&options.Chart, "chart", "c", "jenkins-x/jenkins-x-platform", "The Chart to upgrade")
cmd.Flags().StringVarP(&options.Version, "version", "v", "", "The specific platform version to upgrade to")
cmd.Flags().StringVarP(&options.Set, "set", "s", "", "The helm parameters to pass in while upgrading")
options.addCommonFlags(cmd)
options.InstallFlags.addCloudEnvOptions(cmd)
return cmd
}
// Run implements the command
func (o *UpgradePlatformOptions) Run() error {
ns := o.Namespace
version := o.Version
err := o.Helm().UpdateRepo()
if err != nil {
return err
}
if version == "" {
io := &InstallOptions{}
io.CommonOptions = o.CommonOptions
io.Flags = o.InstallFlags
wrkDir, err := io.cloneJXCloudEnvironmentsRepo()
if err != nil {
return err
}
version, err = loadVersionFromCloudEnvironmentsDir(wrkDir)
if err != nil {
return err
}
}
if version != "" {
log.Infof("Upgrading to version %s\n", util.ColorInfo(version))
}
values := []string{}
if o.Set != "" {
values = append(values, o.Set)
}
return o.Helm().UpgradeChart(o.Chart, o.ReleaseName, ns, nil, false, nil, false, false, values, nil)
}