From cd32e76a50aac93b93a252e84b4aaacbe85343ea Mon Sep 17 00:00:00 2001 From: John Gardiner Myers Date: Tue, 22 Aug 2023 17:07:10 -0700 Subject: [PATCH] Use AWS CCM 1.28.1 on k8s 1.28+ --- pkg/model/components/awscloudcontrollermanager.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/model/components/awscloudcontrollermanager.go b/pkg/model/components/awscloudcontrollermanager.go index 54d2567819..18ab1574a5 100644 --- a/pkg/model/components/awscloudcontrollermanager.go +++ b/pkg/model/components/awscloudcontrollermanager.go @@ -89,8 +89,10 @@ func (b *AWSCloudControllerManagerOptionsBuilder) BuildOptions(o interface{}) er eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.26.6" case 27: eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.27.2" + case 28: + eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.28.1" default: - eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.27.2" + eccm.Image = "registry.k8s.io/provider-aws/cloud-controller-manager:v1.28.1" } }