Skip to content

Commit b755312

Browse files
authored
Update to ACK runtime v0.47.0, code-generator v0.47.1 (#115)
### Update to ACK runtime `v0.47.0`, code-generator `v0.47.1` ---------- * ACK code-generator `v0.47.1` [release notes](https://github.com/aws-controllers-k8s/code-generator/releases/tag/v0.47.1) * ACK runtime `v0.47.0` [release notes](https://github.com/aws-controllers-k8s/runtime/releases/tag/v0.47.0) ---------- NOTE: This PR increments the release version of service controller from `v1.0.10` to `v1.0.11` Once this PR is merged, release `v1.0.11` will be automatically created for `memorydb-controller` **Please close this PR, if you do not want the new patch release for `memorydb-controller`** ---------- #### stdout for `make build-controller`: ``` building ack-generate ... ok. ==== building memorydb-controller ==== Copying common custom resource definitions into memorydb Building Kubernetes API objects for memorydb Generating deepcopy code for memorydb Generating custom resource definitions for memorydb Building service controller for memorydb Running GO mod tidy Generating RBAC manifests for memorydb Running gofmt against generated code for memorydb Updating additional GitHub repository maintenance files ==== building memorydb-controller release artifacts ==== Building release artifacts for memorydb-v1.0.11 Generating common custom resource definitions Generating custom resource definitions for memorydb Generating RBAC manifests for memorydb ``` ---------- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 4de7b02 commit b755312

13 files changed

+38
-18
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ack_generate_info:
2-
build_date: "2025-05-13T04:37:20Z"
3-
build_hash: 55bf57b2806c33a7fcd074be403f26ce3f8e58db
2+
build_date: "2025-05-24T00:26:00Z"
3+
build_hash: 66a58d259146834e61b211a9a01609beaa58ef77
44
go_version: go1.24.2
5-
version: v0.46.2
6-
api_directory_checksum: ada51eb492c387f770228d8880ba5402e14417d2
5+
version: v0.47.1
6+
api_directory_checksum: 0f62053149f9d58731333e46fdbc434a4bf60c15
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:

apis/v1alpha1/cluster.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/user.go

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/controller/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ kind: Kustomization
66
images:
77
- name: controller
88
newName: public.ecr.aws/aws-controllers-k8s/memorydb-controller
9-
newTag: 1.0.10
9+
newTag: 1.0.11

config/crd/bases/memorydb.services.k8s.aws_clusters.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ spec:
4343
Contains all of the attributes of a specific cluster.
4444
properties:
4545
aclName:
46-
description: The name of the Access Control List to associate with
47-
the cluster.
46+
description: |-
47+
The name of the Access Control List to associate with the cluster.
48+
49+
Regex Pattern: `^[a-zA-Z][a-zA-Z0-9\-]*$`
4850
type: string
4951
aclRef:
5052
description: "AWSResourceReferenceWrapper provides a wrapper around

config/crd/bases/memorydb.services.k8s.aws_users.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ spec:
4646
MemoryDB clusters.
4747
properties:
4848
accessString:
49-
description: Access permissions string used for this user.
49+
description: |-
50+
Access permissions string used for this user.
51+
52+
Regex Pattern: `\S`
5053
type: string
5154
authenticationMode:
5255
description: |-
@@ -82,6 +85,8 @@ spec:
8285
description: |-
8386
The name of the user. This value must be unique as it also serves as the
8487
user identifier.
88+
89+
Regex Pattern: `^[a-zA-Z][a-zA-Z0-9\-]*$`
8590
type: string
8691
tags:
8792
description: |-

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.24.1
77
require (
88
github.com/aws-controllers-k8s/ec2-controller v1.0.0
99
github.com/aws-controllers-k8s/kms-controller v1.0.0
10-
github.com/aws-controllers-k8s/runtime v0.46.1
10+
github.com/aws-controllers-k8s/runtime v0.47.0
1111
github.com/aws-controllers-k8s/sns-controller v0.0.5
1212
github.com/aws/aws-sdk-go v1.49.0
1313
github.com/aws/aws-sdk-go-v2 v1.36.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ github.com/aws-controllers-k8s/ec2-controller v1.0.0 h1:Si71KZjjegndY8ITI732dMPx
22
github.com/aws-controllers-k8s/ec2-controller v1.0.0/go.mod h1:/hrKcnF8KpsSoa5vjcVmdaR6OYWPSjkeHdVWwQljRb4=
33
github.com/aws-controllers-k8s/kms-controller v1.0.0 h1:Tb1hyedoI+n51gLYmhbYhw9ae1nXQrYzrHhYFCvJSTw=
44
github.com/aws-controllers-k8s/kms-controller v1.0.0/go.mod h1:eS2S9pJ6G5f4hvSoEuUyrzUjDkFnE7ctzGv3TUnnTvA=
5-
github.com/aws-controllers-k8s/runtime v0.46.1 h1:61RU6uYiFSp0cDhv52vAmaPzrebzoudtsp1fGkk6iLk=
6-
github.com/aws-controllers-k8s/runtime v0.46.1/go.mod h1:G2UMBKA7qgXG4JV16NTIUp715uqvUEvWaa7TG1I527U=
5+
github.com/aws-controllers-k8s/runtime v0.47.0 h1:pWzMLrwAFrAmMuSukYDLrQp5Yw594w1ke6XWGmI3uyo=
6+
github.com/aws-controllers-k8s/runtime v0.47.0/go.mod h1:G2UMBKA7qgXG4JV16NTIUp715uqvUEvWaa7TG1I527U=
77
github.com/aws-controllers-k8s/sns-controller v0.0.5 h1:sFgot4v/LqeO9USfSbaWIQp7DawlF6vhMy1YU2lBXu4=
88
github.com/aws-controllers-k8s/sns-controller v0.0.5/go.mod h1:zw3lE2Yie+E6dv3Guaa+tLtH2w5UKoH8IUNCSEJCUoA=
99
github.com/aws/aws-sdk-go v1.49.0 h1:g9BkW1fo9GqKfwg2+zCD+TW/D36Ux+vtfJ8guF4AYmY=

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: memorydb-chart
33
description: A Helm chart for the ACK service controller for Amazon MemoryDB for Redis (MemoryDB)
4-
version: 1.0.10
5-
appVersion: 1.0.10
4+
version: 1.0.11
5+
appVersion: 1.0.11
66
home: https://github.com/aws-controllers-k8s/memorydb-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/crds/memorydb.services.k8s.aws_clusters.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ spec:
4343
Contains all of the attributes of a specific cluster.
4444
properties:
4545
aclName:
46-
description: The name of the Access Control List to associate with
47-
the cluster.
46+
description: |-
47+
The name of the Access Control List to associate with the cluster.
48+
49+
Regex Pattern: `^[a-zA-Z][a-zA-Z0-9\-]*$`
4850
type: string
4951
aclRef:
5052
description: "AWSResourceReferenceWrapper provides a wrapper around

0 commit comments

Comments
 (0)