Skip to content

Commit 9a9fa52

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

14 files changed

+339
-102
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ack_generate_info:
2-
build_date: "2025-02-20T01:13:10Z"
3-
build_hash: 8b426c490ff1984d8ce5577e11d6dabe1b6373b8
2+
build_date: "2025-02-20T18:05:49Z"
3+
build_hash: a326346bd3a6973254d247c9ab2dc76790c36241
44
go_version: go1.24.0
5-
version: v0.43.1
6-
api_directory_checksum: e279917a9e4b26dd75502a4ef7fa8823f9844c83
5+
version: v0.43.2
6+
api_directory_checksum: 3bc0637159c94a74d2402d9a707f9c21339e9b45
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:

apis/v1alpha1/backup.go

-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/global_table.go

-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/table.go

+64-77
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/controller/kustomization.yaml

+1-1
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/dynamodb-controller
9-
newTag: 1.2.20
9+
newTag: 1.2.21

config/crd/bases/dynamodb.services.k8s.aws_backups.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,12 @@ spec:
6363
description: BackupSpec defines the desired state of Backup.
6464
properties:
6565
backupName:
66+
description: Specified name for the backup.
6667
type: string
6768
tableName:
69+
description: |-
70+
The name of the table. You can also provide the Amazon Resource Name (ARN)
71+
of the table in this parameter.
6872
type: string
6973
required:
7074
- backupName

config/crd/bases/dynamodb.services.k8s.aws_globaltables.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ spec:
4343
Represents the properties of a global table.
4444
properties:
4545
globalTableName:
46+
description: The global table name.
4647
type: string
4748
replicationGroup:
49+
description: The Regions where the global table needs to be created.
4850
items:
4951
description: Represents the properties of a replica.
5052
properties:

0 commit comments

Comments
 (0)