Skip to content

Commit 8ff59ff

Browse files
Move default components to an appropriate upgrade order (generic)
Now that CVO only applies ordering on update, we are reorganizing the order components are applied to better align with correct upgrades. The order is: 0000_10_*: config-operator 0000_20_*: kube-apiserver 0000_25_*: kube scheduler and controller manager 0000_30_*: other apiservers: openshift and machine 0000_40_*: reserved 0000_50_*: all non-order specific components 0000_60_*: reserved 0000_70_*: disruptive node-level components: dns, sdn, multus 0000_80_*: machine operators 0000_90_*: reserved for any post-machine updates Operators in 0000_50_* should have no prefix (like 0000_70_ before). No other rules of ordering have changed.
1 parent 65c7c30 commit 8ff59ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • pkg/oc/cli/admin/release

pkg/oc/cli/admin/release/new.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1305,7 +1305,7 @@ func writePayload(w io.Writer, is *imageapi.ImageStream, cm *CincinnatiMetadata,
13051305
// get put in a scoped bucket at the end. Only a few components should need to
13061306
// be in the global order.
13071307
if !strings.HasPrefix(filename, "0000_") {
1308-
filename = fmt.Sprintf("0000_70_%s_%s", name, filename)
1308+
filename = fmt.Sprintf("0000_50_%s_%s", name, filename)
13091309
}
13101310
if count, ok := files[filename]; ok {
13111311
ext := path.Ext(path.Base(filename))

0 commit comments

Comments
 (0)