Skip to content

Commit 4667334

Browse files
authored
Release v1.6.1 && wait for ClusterEndpoint to be Available before update (#242)
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 796912c commit 4667334

File tree

23 files changed

+113
-52
lines changed

23 files changed

+113
-52
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ack_generate_info:
2-
build_date: "2025-08-22T23:47:01Z"
3-
build_hash: 1045a5e99038b11b0630ca2f2f69c3bae4bedba6
4-
go_version: go1.25.0
5-
version: v0.51.0-1-g1045a5e
2+
build_date: "2025-09-19T23:41:06Z"
3+
build_hash: 6b4211163dcc34776b01da9a18217bac0f4103fd
4+
go_version: go1.24.5
5+
version: v0.52.0
66
api_directory_checksum: 90b0d1adcc91f4a1b1f1b436e3ac0c30d9271678
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:
10-
file_checksum: ecb60f0fe79237eb820e68d823e6da2bf0829140
10+
file_checksum: 23c3c400e5913ebaa0047af70fda453b065ce321
1111
original_file_name: generator.yaml
1212
last_modification:
1313
reason: API generation

apis/v1alpha1/generator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ resources:
612612
hooks:
613613
sdk_read_many_post_set_output:
614614
template_path: hooks/db_cluster_endpoint/sdk_read_many_post_set_output.go.tpl
615-
sdk_update_pre_set_output:
616-
template_path: hooks/db_cluster_endpoint/sdk_update_pre_set_output.go.tpl
615+
sdk_update_pre_build_request:
616+
template_path: hooks/db_cluster_endpoint/sdk_update_pre_build_request.go.tpl
617617
delta_pre_compare:
618618
template_path: hooks/db_cluster_endpoint/delta_pre_compare.go.tpl

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/rds-controller
9-
newTag: 1.6.0
9+
newTag: 1.6.1

generator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ resources:
612612
hooks:
613613
sdk_read_many_post_set_output:
614614
template_path: hooks/db_cluster_endpoint/sdk_read_many_post_set_output.go.tpl
615-
sdk_update_pre_set_output:
616-
template_path: hooks/db_cluster_endpoint/sdk_update_pre_set_output.go.tpl
615+
sdk_update_pre_build_request:
616+
template_path: hooks/db_cluster_endpoint/sdk_update_pre_build_request.go.tpl
617617
delta_pre_compare:
618618
template_path: hooks/db_cluster_endpoint/delta_pre_compare.go.tpl

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: rds-chart
33
description: A Helm chart for the ACK service controller for Amazon Relational Database Service (RDS)
4-
version: 1.6.0
5-
appVersion: 1.6.0
4+
version: 1.6.1
5+
appVersion: 1.6.1
66
home: https://github.com/aws-controllers-k8s/rds-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/templates/NOTES.txt

Lines changed: 1 addition & 1 deletion
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/rds-controller:1.6.0".
2+
This chart deploys "public.ecr.aws/aws-controllers-k8s/rds-controller:1.6.1".
33

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

helm/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ metadata:
1010
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
1111
k8s-app: {{ include "ack-rds-controller.app.name" . }}
1212
helm.sh/chart: {{ include "ack-rds-controller.chart.name-version" . }}
13+
{{- range $key, $value := .Values.deployment.labels }}
14+
{{ $key }}: {{ $value | quote }}
15+
{{- end }}
1316
spec:
1417
replicas: {{ .Values.deployment.replicas }}
1518
selector:
@@ -88,6 +91,7 @@ spec:
8891
- --feature-gates
8992
- "$(FEATURE_GATES)"
9093
{{- end }}
94+
- --enable-carm={{ .Values.enableCARM }}
9195
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
9296
imagePullPolicy: {{ .Values.image.pullPolicy }}
9397
name: controller

helm/values.schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,11 @@
263263
},
264264
"type": "object"
265265
},
266+
"enableCARM": {
267+
"description": "Parameter to enable or disable cross account resource management.",
268+
"type": "boolean",
269+
"default": true
270+
},
266271
"serviceAccount": {
267272
"description": "ServiceAccount settings",
268273
"properties": {

helm/values.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

@@ -176,6 +176,9 @@ leaderElection:
176176
# pod.
177177
namespace: ""
178178

179+
# Enable Cross Account Resource Management (default = true). Set this to false to disable cross account resource management.
180+
enableCARM: true
181+
179182
# Configuration for feature gates. These are optional controller features that
180183
# can be individually enabled ("true") or disabled ("false") by adding key/value
181184
# pairs below.

pkg/resource/db_cluster/resource.go

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

0 commit comments

Comments
 (0)