Skip to content

Commit 72820d2

Browse files
authored
Update to ACK runtime v0.43.0, code-generator v0.43.2 (#31)
### 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.0.5` to `v1.0.6` Once this PR is merged, release `v1.0.6` will be automatically created for `documentdb-controller` **Please close this PR, if you do not want the new patch release for `documentdb-controller`** ---------- #### stdout for `make build-controller`: ``` building ack-generate ... ok. ==== building documentdb-controller ==== Copying common custom resource definitions into documentdb Building Kubernetes API objects for documentdb Generating deepcopy code for documentdb Generating custom resource definitions for documentdb Building service controller for documentdb Running GO mod tidy Generating RBAC manifests for documentdb Running gofmt against generated code for documentdb Updating additional GitHub repository maintenance files ==== building documentdb-controller release artifacts ==== Building release artifacts for documentdb-v1.0.6 Generating common custom resource definitions Generating custom resource definitions for documentdb Generating RBAC manifests for documentdb ``` ---------- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 9795bf5 commit 72820d2

15 files changed

+26
-35
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:53:22Z"
3-
build_hash: 66c0f840b0bcf6f552be46cf5ee0fb95ad57053e
4-
go_version: go1.23.6
5-
version: v0.43.0
6-
api_directory_checksum: f04a17564dd6ec2c7467565bf2a6a072f1298b38
2+
build_date: "2025-02-20T18:07:13Z"
3+
build_hash: a326346bd3a6973254d247c9ab2dc76790c36241
4+
go_version: go1.24.0
5+
version: v0.43.2
6+
api_directory_checksum: c6e697ce92329f0df1ffc17bd44d2074e26f05ac
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:

apis/v1alpha1/db_cluster.go

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

apis/v1alpha1/db_instance.go

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

apis/v1alpha1/db_subnet_group.go

+1-1
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/documentdb-controller
9-
newTag: 1.0.5
9+
newTag: 1.0.6

config/crd/bases/documentdb.services.k8s.aws_dbclusters.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ spec:
390390
type: string
391391
conditions:
392392
description: |-
393-
All CRS managed by ACK have a common `Status.Conditions` member that
393+
All CRs managed by ACK have a common `Status.Conditions` member that
394394
contains a collection of `ackv1alpha1.Condition` objects that describe
395395
the various terminal states of the CR and its backend AWS service API
396396
resource

config/crd/bases/documentdb.services.k8s.aws_dbinstances.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ spec:
6262
6363
Example: us-east-1d
6464
type: string
65+
x-kubernetes-validations:
66+
- message: Value is immutable once set
67+
rule: self == oldSelf
6568
caCertificateIdentifier:
6669
description: |-
6770
The CA certificate identifier to use for the DB instance's server certificate.
@@ -233,7 +236,7 @@ spec:
233236
type: object
234237
conditions:
235238
description: |-
236-
All CRS managed by ACK have a common `Status.Conditions` member that
239+
All CRs managed by ACK have a common `Status.Conditions` member that
237240
contains a collection of `ackv1alpha1.Condition` objects that describe
238241
the various terminal states of the CR and its backend AWS service API
239242
resource

config/crd/bases/documentdb.services.k8s.aws_dbsubnetgroups.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ spec:
129129
type: object
130130
conditions:
131131
description: |-
132-
All CRS managed by ACK have a common `Status.Conditions` member that
132+
All CRs managed by ACK have a common `Status.Conditions` member that
133133
contains a collection of `ackv1alpha1.Condition` objects that describe
134134
the various terminal states of the CR and its backend AWS service API
135135
resource

helm/Chart.yaml

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

helm/crds/documentdb.services.k8s.aws_dbclusters.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ spec:
390390
type: string
391391
conditions:
392392
description: |-
393-
All CRS managed by ACK have a common `Status.Conditions` member that
393+
All CRs managed by ACK have a common `Status.Conditions` member that
394394
contains a collection of `ackv1alpha1.Condition` objects that describe
395395
the various terminal states of the CR and its backend AWS service API
396396
resource

helm/crds/documentdb.services.k8s.aws_dbinstances.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ spec:
6262
6363
Example: us-east-1d
6464
type: string
65+
x-kubernetes-validations:
66+
- message: Value is immutable once set
67+
rule: self == oldSelf
6568
caCertificateIdentifier:
6669
description: |-
6770
The CA certificate identifier to use for the DB instance's server certificate.
@@ -233,7 +236,7 @@ spec:
233236
type: object
234237
conditions:
235238
description: |-
236-
All CRS managed by ACK have a common `Status.Conditions` member that
239+
All CRs managed by ACK have a common `Status.Conditions` member that
237240
contains a collection of `ackv1alpha1.Condition` objects that describe
238241
the various terminal states of the CR and its backend AWS service API
239242
resource

helm/crds/documentdb.services.k8s.aws_dbsubnetgroups.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ spec:
129129
type: object
130130
conditions:
131131
description: |-
132-
All CRS managed by ACK have a common `Status.Conditions` member that
132+
All CRs managed by ACK have a common `Status.Conditions` member that
133133
contains a collection of `ackv1alpha1.Condition` objects that describe
134134
the various terminal states of the CR and its backend AWS service API
135135
resource

helm/templates/NOTES.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ .Chart.Name }} has been installed.
2-
This chart deploys "public.ecr.aws/aws-controllers-k8s/documentdb-controller:1.0.5".
2+
This chart deploys "public.ecr.aws/aws-controllers-k8s/documentdb-controller:1.0.6".
33

44
Check its status by running:
55
kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"

helm/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
image:
66
repository: public.ecr.aws/aws-controllers-k8s/documentdb-controller
7-
tag: 1.0.5
7+
tag: 1.0.6
88
pullPolicy: IfNotPresent
99
pullSecrets: []
1010

pkg/resource/db_instance/sdk.go

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

0 commit comments

Comments
 (0)