Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions pkg/configurer/ubuntu/resolute.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package ubuntu

import (
"github.com/k0sproject/rig"
"github.com/k0sproject/rig/os/registry"
)

// ResoluteConfigurer is the Ubuntu Resolute Raccoon (26.04) specific host configurer implementation.
//
// NOTE: MCR has not published Docker EE packages for Ubuntu 26.04 as of
// 2026-09-02 (repos.mirantis.com/ubuntu/dists/ and
// repos-internal.mirantis.com/ubuntu/dists/ only have
// trusty/xenial/bionic/focal/jammy/noble - no resolute). InstallMCR will
// fail on this platform until MCR ships support; see PRODENG-3593 and the
// TestCuttingEdgeCluster smoke test.
type ResoluteConfigurer struct {
Configurer
}

func init() {
registry.RegisterOSModule(
func(os rig.OSVersion) bool {
return os.ID == "ubuntu" && os.Version == "26.04"
},
func() interface{} {
return ResoluteConfigurer{}
},
)
}
1 change: 1 addition & 0 deletions pkg/product/mke/config/configurer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ var (
_ HostConfigurer = ubuntu.FocalConfigurer{}
_ HostConfigurer = ubuntu.JammyConfigurer{}
_ HostConfigurer = ubuntu.NobleConfigurer{}
_ HostConfigurer = ubuntu.ResoluteConfigurer{}
_ HostConfigurer = ubuntu.XenialConfigurer{}
)