diff --git a/components/operator/internal/modules/module.go b/components/operator/internal/modules/module.go index cd93a4498c..f5787dc772 100644 --- a/components/operator/internal/modules/module.go +++ b/components/operator/internal/modules/module.go @@ -283,7 +283,7 @@ func (module Module) preInstall(ctx Context, deployer *ResourceDeployer, portAll var chosenVersion Version for _, version := range versions { - if !moduleContext.HasVersionHigher(version) { + if !moduleContext.HasVersionHigherOrEqual(version) { break } chosenVersion = module.Versions[version]