Skip to content

Commit e3505ad

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

27 files changed

+52
-53
lines changed

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-18T01:03:38Z"
3-
build_hash: 66c0f840b0bcf6f552be46cf5ee0fb95ad57053e
4-
go_version: go1.23.6
5-
version: v0.43.0
6-
api_directory_checksum: 0f68037c7970cd69c9365d191e78762f7ed5a7c5
2+
build_date: "2025-02-20T18:08:39Z"
3+
build_hash: a326346bd3a6973254d247c9ab2dc76790c36241
4+
go_version: go1.24.0
5+
version: v0.43.2
6+
api_directory_checksum: e8ea0ba4a88df803e4ef067a23c8bf95164a6e51
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:

apis/v1alpha1/cache_cluster.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/cache_parameter_group.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/cache_subnet_group.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/replication_group.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/snapshot.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/user.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/user_group.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/elasticache-controller
9-
newTag: 0.2.0
9+
newTag: 0.2.1

config/crd/bases/elasticache.services.k8s.aws_cacheclusters.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,9 @@ spec:
182182
You cannot use any parameter group which has cluster-enabled='yes' when creating
183183
a cluster.
184184
type: string
185+
x-kubernetes-validations:
186+
- message: Value is immutable once set
187+
rule: self == oldSelf
185188
cacheParameterGroupRef:
186189
description: "AWSResourceReferenceWrapper provides a wrapper around
187190
*AWSResourceReference\ntype to provide more user friendly syntax
@@ -406,6 +409,9 @@ spec:
406409
407410
This parameter is only valid if the Engine parameter is redis.
408411
type: string
412+
x-kubernetes-validations:
413+
- message: Value is immutable once set
414+
rule: self == oldSelf
409415
replicationGroupRef:
410416
description: "AWSResourceReferenceWrapper provides a wrapper around
411417
*AWSResourceReference\ntype to provide more user friendly syntax
@@ -453,6 +459,9 @@ spec:
453459
454460
This parameter is only valid if the Engine parameter is redis.
455461
type: string
462+
x-kubernetes-validations:
463+
- message: Value is immutable once set
464+
rule: self == oldSelf
456465
snapshotRef:
457466
description: "AWSResourceReferenceWrapper provides a wrapper around
458467
*AWSResourceReference\ntype to provide more user friendly syntax
@@ -708,7 +717,7 @@ spec:
708717
type: string
709718
conditions:
710719
description: |-
711-
All CRS managed by ACK have a common `Status.Conditions` member that
720+
All CRs managed by ACK have a common `Status.Conditions` member that
712721
contains a collection of `ackv1alpha1.Condition` objects that describe
713722
the various terminal states of the CR and its backend AWS service API
714723
resource

0 commit comments

Comments
 (0)