Skip to content

Commit 70f8dda

Browse files
authored
Update to ACK runtime v0.43.0, code-generator v0.43.1 (#117)
### Update to ACK runtime `v0.43.0`, code-generator `v0.43.1` ---------- * ACK code-generator `v0.43.1` [release notes](https://github.com/aws-controllers-k8s/code-generator/releases/tag/v0.43.1) * 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.19` to `v1.2.20` Once this PR is merged, release `v1.2.20` 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. installing controller-gen v0.16.2 ... 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.20 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 664e61b commit 70f8dda

15 files changed

+126
-363
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ack_generate_info:
2-
build_date: "2025-02-18T00:17:10Z"
3-
build_hash: 66c0f840b0bcf6f552be46cf5ee0fb95ad57053e
4-
go_version: go1.23.6
5-
version: v0.43.0
6-
api_directory_checksum: cbd3e29134a6bc5a70efe61088179285fe9ae0c0
2+
build_date: "2025-02-19T22:50:30Z"
3+
build_hash: 8b426c490ff1984d8ce5577e11d6dabe1b6373b8
4+
go_version: go1.24.0
5+
version: v0.43.1
6+
api_directory_checksum: d541a9148752f2234a9c2393a16d8af0f86101a9
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:

apis/v1alpha1/backup.go

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

apis/v1alpha1/global_table.go

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

apis/v1alpha1/table.go

+80-64
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.19
9+
newTag: 1.2.20

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

+1-5
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,8 @@ spec:
6363
description: BackupSpec defines the desired state of Backup.
6464
properties:
6565
backupName:
66-
description: Specified name for the backup.
6766
type: string
6867
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.
7268
type: string
7369
required:
7470
- backupName
@@ -142,7 +138,7 @@ spec:
142138
type: string
143139
conditions:
144140
description: |-
145-
All CRS managed by ACK have a common `Status.Conditions` member that
141+
All CRs managed by ACK have a common `Status.Conditions` member that
146142
contains a collection of `ackv1alpha1.Condition` objects that describe
147143
the various terminal states of the CR and its backend AWS service API
148144
resource

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@ spec:
4343
Represents the properties of a global table.
4444
properties:
4545
globalTableName:
46-
description: The global table name.
4746
type: string
4847
replicationGroup:
49-
description: The Regions where the global table needs to be created.
5048
items:
5149
description: Represents the properties of a replica.
5250
properties:
@@ -92,7 +90,7 @@ spec:
9290
type: object
9391
conditions:
9492
description: |-
95-
All CRS managed by ACK have a common `Status.Conditions` member that
93+
All CRs managed by ACK have a common `Status.Conditions` member that
9694
contains a collection of `ackv1alpha1.Condition` objects that describe
9795
the various terminal states of the CR and its backend AWS service API
9896
resource

0 commit comments

Comments
 (0)