Skip to content

Commit e581f37

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

File tree

9 files changed

+49
-42
lines changed

9 files changed

+49
-42
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-18T01:07:06Z"
3-
build_hash: 66c0f840b0bcf6f552be46cf5ee0fb95ad57053e
4-
go_version: go1.23.6
5-
version: v0.43.0
6-
api_directory_checksum: 78a5d23ba8b0c12225d1afd2506d5524d9a7aa68
2+
build_date: "2025-02-20T18:22:24Z"
3+
build_hash: a326346bd3a6973254d247c9ab2dc76790c36241
4+
go_version: go1.24.0
5+
version: v0.43.2
6+
api_directory_checksum: 06c3fd0ed69ec69d489b2ca1582a2b21caaf2ad5
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:

apis/v1alpha1/certificate.go

+7-2
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/acm-controller
9-
newTag: 1.0.4
9+
newTag: 1.0.5

config/crd/bases/acm.services.k8s.aws_certificates.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,17 @@ spec:
5959
- key
6060
type: object
6161
x-kubernetes-map-type: atomic
62+
x-kubernetes-validations:
63+
- message: Value is immutable once set
64+
rule: self == oldSelf
6265
certificateARN:
6366
description: |-
6467
The Amazon Resource Name (ARN) of an imported certificate to replace. This field is only valid when importing
6568
an existing certificate into ACM.
6669
type: string
70+
x-kubernetes-validations:
71+
- message: Value is immutable once set
72+
rule: self == oldSelf
6773
certificateAuthorityARN:
6874
description: |-
6975
The Amazon Resource Name (ARN) of the private certificate authority (CA)
@@ -75,6 +81,9 @@ spec:
7581
7682
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
7783
type: string
84+
x-kubernetes-validations:
85+
- message: Value is immutable once set
86+
rule: self == oldSelf
7887
certificateAuthorityRef:
7988
description: "AWSResourceReferenceWrapper provides a wrapper around
8089
*AWSResourceReference\ntype to provide more user friendly syntax
@@ -112,6 +121,9 @@ spec:
112121
- key
113122
type: object
114123
x-kubernetes-map-type: atomic
124+
x-kubernetes-validations:
125+
- message: Value is immutable once set
126+
rule: self == oldSelf
115127
domainName:
116128
description: |-
117129
Fully qualified domain name (FQDN), such as www.example.com, that you want
@@ -201,6 +213,9 @@ spec:
201213
- key
202214
type: object
203215
x-kubernetes-map-type: atomic
216+
x-kubernetes-validations:
217+
- message: Value is immutable once set
218+
rule: self == oldSelf
204219
subjectAlternativeNames:
205220
description: |-
206221
Additional FQDNs to be included in the Subject Alternative Name extension
@@ -275,7 +290,7 @@ spec:
275290
type: object
276291
conditions:
277292
description: |-
278-
All CRS managed by ACK have a common `Status.Conditions` member that
293+
All CRs managed by ACK have a common `Status.Conditions` member that
279294
contains a collection of `ackv1alpha1.Condition` objects that describe
280295
the various terminal states of the CR and its backend AWS service API
281296
resource

helm/Chart.yaml

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

helm/crds/acm.services.k8s.aws_certificates.yaml

+16-1
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,17 @@ spec:
5959
- key
6060
type: object
6161
x-kubernetes-map-type: atomic
62+
x-kubernetes-validations:
63+
- message: Value is immutable once set
64+
rule: self == oldSelf
6265
certificateARN:
6366
description: |-
6467
The Amazon Resource Name (ARN) of an imported certificate to replace. This field is only valid when importing
6568
an existing certificate into ACM.
6669
type: string
70+
x-kubernetes-validations:
71+
- message: Value is immutable once set
72+
rule: self == oldSelf
6773
certificateAuthorityARN:
6874
description: |-
6975
The Amazon Resource Name (ARN) of the private certificate authority (CA)
@@ -75,6 +81,9 @@ spec:
7581
7682
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
7783
type: string
84+
x-kubernetes-validations:
85+
- message: Value is immutable once set
86+
rule: self == oldSelf
7887
certificateAuthorityRef:
7988
description: "AWSResourceReferenceWrapper provides a wrapper around
8089
*AWSResourceReference\ntype to provide more user friendly syntax
@@ -112,6 +121,9 @@ spec:
112121
- key
113122
type: object
114123
x-kubernetes-map-type: atomic
124+
x-kubernetes-validations:
125+
- message: Value is immutable once set
126+
rule: self == oldSelf
115127
domainName:
116128
description: |-
117129
Fully qualified domain name (FQDN), such as www.example.com, that you want
@@ -201,6 +213,9 @@ spec:
201213
- key
202214
type: object
203215
x-kubernetes-map-type: atomic
216+
x-kubernetes-validations:
217+
- message: Value is immutable once set
218+
rule: self == oldSelf
204219
subjectAlternativeNames:
205220
description: |-
206221
Additional FQDNs to be included in the Subject Alternative Name extension
@@ -275,7 +290,7 @@ spec:
275290
type: object
276291
conditions:
277292
description: |-
278-
All CRS managed by ACK have a common `Status.Conditions` member that
293+
All CRs managed by ACK have a common `Status.Conditions` member that
279294
contains a collection of `ackv1alpha1.Condition` objects that describe
280295
the various terminal states of the CR and its backend AWS service API
281296
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/acm-controller:1.0.4".
2+
This chart deploys "public.ecr.aws/aws-controllers-k8s/acm-controller:1.0.5".
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/acm-controller
7-
tag: 1.0.4
7+
tag: 1.0.5
88
pullPolicy: IfNotPresent
99
pullSecrets: []
1010

pkg/resource/certificate/sdk.go

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

0 commit comments

Comments
 (0)