Skip to content

Commit d89d59d

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

15 files changed

+40
-37
lines changed

apis/v1alpha1/access_point.go

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

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ack_generate_info:
2-
build_date: "2025-02-18T00:08:23Z"
3-
build_hash: 66c0f840b0bcf6f552be46cf5ee0fb95ad57053e
4-
go_version: go1.23.6
5-
version: v0.43.0
6-
api_directory_checksum: 78c2eb5f2e05080726633beb066d0b258bf2c290
2+
build_date: "2025-02-20T18:02:09Z"
3+
build_hash: a326346bd3a6973254d247c9ab2dc76790c36241
4+
go_version: go1.24.0
5+
version: v0.43.2
6+
api_directory_checksum: ebeb6f826282ad9134ca78efd74dc9125898fddf
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:

apis/v1alpha1/file_system.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/mount_target.go

Lines changed: 1 addition & 1 deletion
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/efs-controller
9-
newTag: 1.0.5
9+
newTag: 1.0.6

config/crd/bases/efs.services.k8s.aws_accesspoints.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ spec:
6868
description: The ID of the EFS file system that the access point provides
6969
access to.
7070
type: string
71+
x-kubernetes-validations:
72+
- message: Value is immutable once set
73+
rule: self == oldSelf
7174
fileSystemRef:
7275
description: "AWSResourceReferenceWrapper provides a wrapper around
7376
*AWSResourceReference\ntype to provide more user friendly syntax
@@ -102,6 +105,9 @@ spec:
102105
format: int64
103106
type: integer
104107
type: object
108+
x-kubernetes-validations:
109+
- message: Value is immutable once set
110+
rule: self == oldSelf
105111
rootDirectory:
106112
description: |-
107113
Specifies the directory on the EFS file system that the access point exposes
@@ -145,6 +151,9 @@ spec:
145151
path:
146152
type: string
147153
type: object
154+
x-kubernetes-validations:
155+
- message: Value is immutable once set
156+
rule: self == oldSelf
148157
tags:
149158
description: |-
150159
Creates tags associated with the access point. Each tag is a key-value pair,
@@ -201,7 +210,7 @@ spec:
201210
type: object
202211
conditions:
203212
description: |-
204-
All CRS managed by ACK have a common `Status.Conditions` member that
213+
All CRs managed by ACK have a common `Status.Conditions` member that
205214
contains a collection of `ackv1alpha1.Condition` objects that describe
206215
the various terminal states of the CR and its backend AWS service API
207216
resource

config/crd/bases/efs.services.k8s.aws_filesystems.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ spec:
308308
type: string
309309
conditions:
310310
description: |-
311-
All CRS managed by ACK have a common `Status.Conditions` member that
311+
All CRs managed by ACK have a common `Status.Conditions` member that
312312
contains a collection of `ackv1alpha1.Condition` objects that describe
313313
the various terminal states of the CR and its backend AWS service API
314314
resource

config/crd/bases/efs.services.k8s.aws_mounttargets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ spec:
195195
type: string
196196
conditions:
197197
description: |-
198-
All CRS managed by ACK have a common `Status.Conditions` member that
198+
All CRs managed by ACK have a common `Status.Conditions` member that
199199
contains a collection of `ackv1alpha1.Condition` objects that describe
200200
the various terminal states of the CR and its backend AWS service API
201201
resource

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: efs-chart
33
description: A Helm chart for the ACK service controller for Amazon Elastic File System (EFS)
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/efs-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/crds/efs.services.k8s.aws_accesspoints.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ spec:
6868
description: The ID of the EFS file system that the access point provides
6969
access to.
7070
type: string
71+
x-kubernetes-validations:
72+
- message: Value is immutable once set
73+
rule: self == oldSelf
7174
fileSystemRef:
7275
description: "AWSResourceReferenceWrapper provides a wrapper around
7376
*AWSResourceReference\ntype to provide more user friendly syntax
@@ -102,6 +105,9 @@ spec:
102105
format: int64
103106
type: integer
104107
type: object
108+
x-kubernetes-validations:
109+
- message: Value is immutable once set
110+
rule: self == oldSelf
105111
rootDirectory:
106112
description: |-
107113
Specifies the directory on the EFS file system that the access point exposes
@@ -145,6 +151,9 @@ spec:
145151
path:
146152
type: string
147153
type: object
154+
x-kubernetes-validations:
155+
- message: Value is immutable once set
156+
rule: self == oldSelf
148157
tags:
149158
description: |-
150159
Creates tags associated with the access point. Each tag is a key-value pair,
@@ -201,7 +210,7 @@ spec:
201210
type: object
202211
conditions:
203212
description: |-
204-
All CRS managed by ACK have a common `Status.Conditions` member that
213+
All CRs managed by ACK have a common `Status.Conditions` member that
205214
contains a collection of `ackv1alpha1.Condition` objects that describe
206215
the various terminal states of the CR and its backend AWS service API
207216
resource

0 commit comments

Comments
 (0)