mirror of https://github.com/kubernetes/kops.git
Pin AWS CCM image tag for k8s 1.25
With the k8s 1.24 rc.0 published, our prow jobs that use k8s CI builds are now on k8s 1.25. To avoid the panic occurring in the latest AWS CCM tag we have to pin 1.25 to the same tag as k8s 1.23 and 1.24
This commit is contained in:
parent
fc9f839233
commit
0eca23e864
|
@ -99,6 +99,8 @@ func (b *AWSCloudControllerManagerOptionsBuilder) BuildOptions(o interface{}) er
|
|||
eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.23.0-alpha.0"
|
||||
case 24:
|
||||
eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.23.0-alpha.0"
|
||||
case 25:
|
||||
eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.23.0-alpha.0"
|
||||
default:
|
||||
eccm.Image = "gcr.io/k8s-staging-provider-aws/cloud-controller-manager:latest"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue