update openstack csi & ccm versions

This commit is contained in:
Jesse Haka 2023-02-20 18:02:06 +02:00
parent 511f32a20c
commit bcc700909e
1 changed files with 8 additions and 4 deletions

View File

@ -836,9 +836,11 @@ func (tf *TemplateFunctions) OpenStackCCMTag() string {
if parsed.Minor == 23 { if parsed.Minor == 23 {
tag = "v1.23.1" tag = "v1.23.1"
} else if parsed.Minor == 24 { } else if parsed.Minor == 24 {
tag = "v1.24.5" tag = "v1.24.6"
} else if parsed.Minor == 25 { } else if parsed.Minor == 25 {
tag = "v1.25.3" tag = "v1.25.4"
} else if parsed.Minor == 26 {
tag = "v1.26.1"
} else { } else {
// otherwise we use always .0 ccm image, if needed that can be overrided using clusterspec // 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) tag = fmt.Sprintf("v%d.%d.0", parsed.Major, parsed.Minor)
@ -856,9 +858,11 @@ func (tf *TemplateFunctions) OpenStackCSITag() string {
tag = "latest" tag = "latest"
} else { } else {
if parsed.Minor == 24 { if parsed.Minor == 24 {
tag = "v1.24.5" tag = "v1.24.6"
} else if parsed.Minor == 25 { } else if parsed.Minor == 25 {
tag = "v1.25.3" tag = "v1.25.4"
} else if parsed.Minor == 26 {
tag = "v1.26.1"
} else { } else {
// otherwise we use always .0 csi image, if needed that can be overrided using cloud config spec // 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) tag = fmt.Sprintf("v%d.%d.0", parsed.Major, parsed.Minor)