mirror of https://github.com/kubernetes/kops.git
update openstack csi & ccm versions
This commit is contained in:
parent
511f32a20c
commit
bcc700909e
|
@ -836,9 +836,11 @@ func (tf *TemplateFunctions) OpenStackCCMTag() string {
|
|||
if parsed.Minor == 23 {
|
||||
tag = "v1.23.1"
|
||||
} else if parsed.Minor == 24 {
|
||||
tag = "v1.24.5"
|
||||
tag = "v1.24.6"
|
||||
} else if parsed.Minor == 25 {
|
||||
tag = "v1.25.3"
|
||||
tag = "v1.25.4"
|
||||
} else if parsed.Minor == 26 {
|
||||
tag = "v1.26.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)
|
||||
|
@ -856,9 +858,11 @@ func (tf *TemplateFunctions) OpenStackCSITag() string {
|
|||
tag = "latest"
|
||||
} else {
|
||||
if parsed.Minor == 24 {
|
||||
tag = "v1.24.5"
|
||||
tag = "v1.24.6"
|
||||
} else if parsed.Minor == 25 {
|
||||
tag = "v1.25.3"
|
||||
tag = "v1.25.4"
|
||||
} else if parsed.Minor == 26 {
|
||||
tag = "v1.26.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)
|
||||
|
|
Loading…
Reference in New Issue