forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upgrade_platform.go
135 lines (121 loc) · 3.7 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
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
133
134
135
package cmd
import (
"io"
"os"
"path/filepath"
"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/pkg/errors"
"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))
}
dir, err := util.ConfigDir()
if err != nil {
return errors.Wrap(err, "failed to create a temporary config dir for git credentials")
}
valueFiles := []string{}
curDir, err := os.Getwd()
if err != nil {
return errors.Wrap(err, "failed to get the current working directory")
}
myValuesFile := filepath.Join(curDir, "myvalues.yaml")
exists, err := util.FileExists(myValuesFile)
if err != nil {
return errors.Wrap(err, "failed to check if the myvaules.yaml file exists in the current directory")
}
if exists {
valueFiles = append(valueFiles, myValuesFile)
log.Infof("Using local value overrides file %s\n", util.ColorInfo(myValuesFile))
} else {
myValuesFile = filepath.Join(dir, "myvalues.yaml")
exists, err = util.FileExists(myValuesFile)
if err != nil {
return errors.Wrap(err, "failed to check if the myvaules.yaml file exists in the .jx directory")
}
if exists {
valueFiles = append(valueFiles, myValuesFile)
log.Infof("Using local value overrides file %s\n", util.ColorInfo(myValuesFile))
}
}
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, valueFiles)
}