-
Notifications
You must be signed in to change notification settings - Fork 787
/
upgrade_addons.go
204 lines (181 loc) · 5.24 KB
/
upgrade_addons.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package cmd
import (
"io"
"fmt"
"github.com/ghodss/yaml"
"github.com/jenkins-x/jx/pkg/addon"
"github.com/jenkins-x/jx/pkg/helm"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
var (
upgradeAddonsLong = templates.LongDesc(`
Upgrades the Jenkins X platform if there is a newer release
`)
upgradeAddonsExample = templates.Examples(`
# Upgrades the Jenkins X platform
jx upgrade platform
`)
)
// UpgradeAddonsOptions the options for the create spring command
type UpgradeAddonsOptions struct {
CreateOptions
Namespace string
Set string
InstallFlags InstallFlags
}
// NewCmdUpgradeAddons defines the command
func NewCmdUpgradeAddons(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := &UpgradeAddonsOptions{
CreateOptions: CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "addons",
Short: "Upgrades any Addons added to Jenkins X if there are any new releases available",
Aliases: []string{"addon"},
Long: upgradeAddonsLong,
Example: upgradeAddonsExample,
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.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 *UpgradeAddonsOptions) Run() error {
err := o.Helm().UpdateRepo()
if err != nil {
return err
}
ns := o.Namespace
if ns == "" {
_, ns, err = o.JXClientAndDevNamespace()
if err != nil {
return err
}
}
o.devNamespace, _, err = kube.GetDevNamespace(o.KubeClientCached, ns)
if err != nil {
return err
}
addonConfig, err := addon.LoadAddonsConfig()
if err != nil {
return err
}
addonEnabled := map[string]bool{}
for _, addon := range addonConfig.Addons {
if addon.Enabled {
addonEnabled[addon.Name] = true
}
}
statusMap, err := o.Helm().StatusReleases(ns)
if err != nil {
log.Warnf("Failed to find Helm installs: %s\n", err)
}
charts := kube.AddonCharts
keys := []string{}
if len(o.Args) > 0 {
for _, k := range o.Args {
chart := charts[k]
if chart == "" {
return errors.Wrapf(err, "failed to match addon %s", k)
}
keys = append(keys, k)
}
} else {
keys = util.SortedMapKeys(charts)
}
for _, k := range keys {
chart := charts[k]
status := statusMap[k]
name := k
if name == k {
name = "kube-cd"
}
if status != "" {
log.Infof("Upgrading %s chart %s...\n", util.ColorInfo(name), util.ColorInfo(chart))
valueFiles := []string{}
valueFiles, err = helm.AppendMyValues(valueFiles)
if err != nil {
return errors.Wrap(err, "failed to append the myvalues.yaml file")
}
values := []string{}
if o.Set != "" {
values = append(values, o.Set)
}
config := &v1.ConfigMap{}
plugins := &v1.ConfigMap{}
if k == kube.DefaultProwReleaseName {
// lets backup any Prow config as we should never replace this, eventually we'll move config to a git repo so this is temporary
config, plugins = o.backupConfigs()
}
err = o.Helm().UpgradeChart(chart, k, ns, nil, false, nil, false, false, values, valueFiles)
if err != nil {
log.Warnf("Failed to upgrade %s chart %s: %v\n", name, chart, err)
}
if k == kube.DefaultProwReleaseName {
err = o.restoreConfigs(config, plugins)
if err != nil {
return err
}
}
log.Infof("Upgraded %s chart %s\n", util.ColorInfo(name), util.ColorInfo(chart))
}
}
return nil
}
func (o *UpgradeAddonsOptions) restoreConfigs(config *v1.ConfigMap, plugins *v1.ConfigMap) error {
var err error
var err1 error
if config != nil {
_, err = o.KubeClientCached.CoreV1().ConfigMaps(o.devNamespace).Get("config", metav1.GetOptions{})
if err != nil {
_, err = o.KubeClientCached.CoreV1().ConfigMaps(o.devNamespace).Create(config)
if err != nil {
b, _ := yaml.Marshal(config)
err1 = fmt.Errorf("error restoring config %s\n", string(b))
}
}
}
if plugins != nil {
_, err = o.KubeClientCached.CoreV1().ConfigMaps(o.devNamespace).Get("plugins", metav1.GetOptions{})
if err != nil {
_, err = o.KubeClientCached.CoreV1().ConfigMaps(o.devNamespace).Create(plugins)
if err != nil {
b, _ := yaml.Marshal(plugins)
err = fmt.Errorf("%v/nerror restoring plugins %s\n", err1, string(b))
}
}
}
return err
}
func (o *UpgradeAddonsOptions) backupConfigs() (*v1.ConfigMap, *v1.ConfigMap) {
config, _ := o.KubeClientCached.CoreV1().ConfigMaps(o.devNamespace).Get("config", metav1.GetOptions{})
plugins, _ := o.KubeClientCached.CoreV1().ConfigMaps(o.devNamespace).Get("plugins", metav1.GetOptions{})
config = config.DeepCopy()
config.ResourceVersion = ""
plugins = plugins.DeepCopy()
plugins.ResourceVersion = ""
return config, plugins
}