diff --git a/pkg/types/clusterconfig/clusterconfig.go b/pkg/types/clusterconfig/clusterconfig.go index fa715a2a73..af95aec568 100644 --- a/pkg/types/clusterconfig/clusterconfig.go +++ b/pkg/types/clusterconfig/clusterconfig.go @@ -419,7 +419,7 @@ func validateImageVersion(image string) (string, error) { tag = "latest" } - if tag != consts.CortexVersion { + if !strings.HasPrefix(tag, consts.CortexVersion) { return "", ErrorImageVersionMismatch(image, tag) }