Merge pull request #15346 from zetaab/updos

add openstack ccm + csi versions to 1.27
This commit is contained in:
Kubernetes Prow Robot 2023-04-24 00:56:48 -07:00 committed by GitHub
commit e9c7b52164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -851,6 +851,8 @@ func (tf *TemplateFunctions) OpenStackCCMTag() string {
tag = "v1.25.5"
} else if parsed.Minor == 26 {
tag = "v1.26.2"
} else if parsed.Minor == 27 {
tag = "v1.27.1"
} else {
// otherwise we use always .0 ccm image, if needed that can be overrided using clusterspec
tag = fmt.Sprintf("v%d.%d.0", parsed.Major, parsed.Minor)
@ -873,6 +875,8 @@ func (tf *TemplateFunctions) OpenStackCSITag() string {
tag = "v1.25.5"
} else if parsed.Minor == 26 {
tag = "v1.26.2"
} else if parsed.Minor == 27 {
tag = "v1.27.1"
} else {
// otherwise we use always .0 csi image, if needed that can be overrided using cloud config spec
tag = fmt.Sprintf("v%d.%d.0", parsed.Major, parsed.Minor)