From 460a653c056ba3c161ce53528fc0a113a76efbc1 Mon Sep 17 00:00:00 2001 From: ci-robot Date: Sat, 24 May 2025 00:30:44 +0000 Subject: [PATCH] Update to ACK runtime `v0.47.0`, code-generator `v0.47.1` --- apis/v1alpha1/ack-generate-metadata.yaml | 8 ++++---- apis/v1alpha1/load_balancer.go | 2 ++ config/controller/kustomization.yaml | 2 +- .../crd/bases/elbv2.services.k8s.aws_loadbalancers.yaml | 2 ++ go.mod | 2 +- go.sum | 4 ++-- helm/Chart.yaml | 4 ++-- helm/crds/elbv2.services.k8s.aws_loadbalancers.yaml | 2 ++ helm/templates/NOTES.txt | 2 +- helm/values.yaml | 2 +- 10 files changed, 18 insertions(+), 12 deletions(-) diff --git a/apis/v1alpha1/ack-generate-metadata.yaml b/apis/v1alpha1/ack-generate-metadata.yaml index b7bcfe2..1e25d01 100755 --- a/apis/v1alpha1/ack-generate-metadata.yaml +++ b/apis/v1alpha1/ack-generate-metadata.yaml @@ -1,9 +1,9 @@ ack_generate_info: - build_date: "2025-05-13T05:03:22Z" - build_hash: 55bf57b2806c33a7fcd074be403f26ce3f8e58db + build_date: "2025-05-24T00:30:07Z" + build_hash: 66a58d259146834e61b211a9a01609beaa58ef77 go_version: go1.24.2 - version: v0.46.2 -api_directory_checksum: 4c03b8539f381604ad67c79af954e584005b6c78 + version: v0.47.1 +api_directory_checksum: c0850c127b1c1c46a7abf233f454e1c7c561a71c api_version: v1alpha1 aws_sdk_go_version: v1.32.6 generator_config_info: diff --git a/apis/v1alpha1/load_balancer.go b/apis/v1alpha1/load_balancer.go index 4e79a43..6b4d2c6 100644 --- a/apis/v1alpha1/load_balancer.go +++ b/apis/v1alpha1/load_balancer.go @@ -29,6 +29,8 @@ type LoadBalancerSpec struct { Attributes []*LoadBalancerAttribute `json:"attributes,omitempty"` // [Application Load Balancers on Outposts] The ID of the customer-owned address // pool (CoIP pool). + // + // Regex Pattern: `^(ipv4pool-coip-)[a-zA-Z0-9]+$` CustomerOwnedIPv4Pool *string `json:"customerOwnedIPv4Pool,omitempty"` // The IP address type. Internal load balancers must use ipv4. // diff --git a/config/controller/kustomization.yaml b/config/controller/kustomization.yaml index 87a6899..359bec3 100644 --- a/config/controller/kustomization.yaml +++ b/config/controller/kustomization.yaml @@ -6,4 +6,4 @@ kind: Kustomization images: - name: controller newName: public.ecr.aws/aws-controllers-k8s/elbv2-controller - newTag: 1.0.9 + newTag: 1.0.10 diff --git a/config/crd/bases/elbv2.services.k8s.aws_loadbalancers.yaml b/config/crd/bases/elbv2.services.k8s.aws_loadbalancers.yaml index fa2a937..3af5471 100644 --- a/config/crd/bases/elbv2.services.k8s.aws_loadbalancers.yaml +++ b/config/crd/bases/elbv2.services.k8s.aws_loadbalancers.yaml @@ -57,6 +57,8 @@ spec: description: |- [Application Load Balancers on Outposts] The ID of the customer-owned address pool (CoIP pool). + + Regex Pattern: `^(ipv4pool-coip-)[a-zA-Z0-9]+$` type: string ipAddressType: description: |- diff --git a/go.mod b/go.mod index cf3d571..088c126 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ toolchain go1.24.1 require ( github.com/aws-controllers-k8s/ec2-controller v1.2.4 - github.com/aws-controllers-k8s/runtime v0.46.1 + github.com/aws-controllers-k8s/runtime v0.47.0 github.com/aws/aws-sdk-go v1.50.20 github.com/aws/aws-sdk-go-v2 v1.34.0 github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.43.8 diff --git a/go.sum b/go.sum index fb3a53a..6b38252 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,7 @@ github.com/aws-controllers-k8s/ec2-controller v1.2.4 h1:lLm/jH4Zmylykuyjo/P8lgHYCdu4do+apX8A34cA0Rk= github.com/aws-controllers-k8s/ec2-controller v1.2.4/go.mod h1:d1pRZ8OyXqokbMNmsVcr/gD6ZZ8EJurOK/6jbiV4y14= -github.com/aws-controllers-k8s/runtime v0.46.1 h1:61RU6uYiFSp0cDhv52vAmaPzrebzoudtsp1fGkk6iLk= -github.com/aws-controllers-k8s/runtime v0.46.1/go.mod h1:G2UMBKA7qgXG4JV16NTIUp715uqvUEvWaa7TG1I527U= +github.com/aws-controllers-k8s/runtime v0.47.0 h1:pWzMLrwAFrAmMuSukYDLrQp5Yw594w1ke6XWGmI3uyo= +github.com/aws-controllers-k8s/runtime v0.47.0/go.mod h1:G2UMBKA7qgXG4JV16NTIUp715uqvUEvWaa7TG1I527U= github.com/aws/aws-sdk-go v1.50.20 h1:xfAnSDVf/azIWTVQXQODp89bubvCS85r70O3nuQ4dnE= github.com/aws/aws-sdk-go v1.50.20/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= github.com/aws/aws-sdk-go-v2 v1.34.0 h1:9iyL+cjifckRGEVpRKZP3eIxVlL06Qk1Tk13vreaVQU= diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 61b73c8..41db06e 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: elbv2-chart description: A Helm chart for the ACK service controller for Elastic Load Balancing (ELB) -version: 1.0.9 -appVersion: 1.0.9 +version: 1.0.10 +appVersion: 1.0.10 home: https://github.com/aws-controllers-k8s/elbv2-controller icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png sources: diff --git a/helm/crds/elbv2.services.k8s.aws_loadbalancers.yaml b/helm/crds/elbv2.services.k8s.aws_loadbalancers.yaml index fa2a937..3af5471 100644 --- a/helm/crds/elbv2.services.k8s.aws_loadbalancers.yaml +++ b/helm/crds/elbv2.services.k8s.aws_loadbalancers.yaml @@ -57,6 +57,8 @@ spec: description: |- [Application Load Balancers on Outposts] The ID of the customer-owned address pool (CoIP pool). + + Regex Pattern: `^(ipv4pool-coip-)[a-zA-Z0-9]+$` type: string ipAddressType: description: |- diff --git a/helm/templates/NOTES.txt b/helm/templates/NOTES.txt index b6eeb01..b730c74 100644 --- a/helm/templates/NOTES.txt +++ b/helm/templates/NOTES.txt @@ -1,5 +1,5 @@ {{ .Chart.Name }} has been installed. -This chart deploys "public.ecr.aws/aws-controllers-k8s/elbv2-controller:1.0.9". +This chart deploys "public.ecr.aws/aws-controllers-k8s/elbv2-controller:1.0.10". Check its status by running: kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}" diff --git a/helm/values.yaml b/helm/values.yaml index 934bb1b..15ac808 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -4,7 +4,7 @@ image: repository: public.ecr.aws/aws-controllers-k8s/elbv2-controller - tag: 1.0.9 + tag: 1.0.10 pullPolicy: IfNotPresent pullSecrets: []