Skip to content

Commit b8b4e75

Browse files
authored
Generate artifacts for v1.4.5 (#196)
Issue #, if available: Description of changes: - Generate release artifacts for v1.4.5 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 28b3dc8 commit b8b4e75

17 files changed

+40
-1022
lines changed

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/rds-controller
9-
newTag: 1.4.4
9+
newTag: 1.4.5

helm/Chart.yaml

+2-2
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.4.4
5-
appVersion: 1.4.4
4+
version: 1.4.5
5+
appVersion: 1.4.5
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/crds/rds.services.k8s.aws_dbclusterparametergroups.yaml

+1-32
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.2
77
name: dbclusterparametergroups.rds.services.k8s.aws
88
spec:
99
group: rds.services.k8s.aws
@@ -41,10 +41,8 @@ spec:
4141
description: |-
4242
DBClusterParameterGroupSpec defines the desired state of DBClusterParameterGroup.
4343
44-
4544
Contains the details of an Amazon RDS DB cluster parameter group.
4645
47-
4846
This data type is used as a response element in the DescribeDBClusterParameterGroups
4947
action.
5048
properties:
@@ -58,78 +56,56 @@ spec:
5856
and can be applied only to a DB cluster running a database engine and engine
5957
version compatible with that DB cluster parameter group family.
6058
61-
6259
# Aurora MySQL
6360
64-
6561
Example: aurora5.6, aurora-mysql5.7, aurora-mysql8.0
6662
67-
6863
# Aurora PostgreSQL
6964
70-
7165
Example: aurora-postgresql9.6
7266
73-
7467
# RDS for MySQL
7568
76-
7769
Example: mysql8.0
7870
79-
8071
# RDS for PostgreSQL
8172
82-
8373
Example: postgres12
8474
85-
8675
To list all of the available parameter group families for a DB engine, use
8776
the following command:
8877
89-
9078
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
9179
--engine <engine>
9280
93-
9481
For example, to list all of the available parameter group families for the
9582
Aurora PostgreSQL DB engine, use the following command:
9683
97-
9884
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
9985
--engine aurora-postgresql
10086
101-
10287
The output contains duplicates.
10388
104-
10589
The following are the valid DB engine values:
10690
107-
10891
- aurora (for MySQL 5.6-compatible Aurora)
10992
110-
11193
- aurora-mysql (for MySQL 5.7-compatible and MySQL 8.0-compatible Aurora)
11294
113-
11495
- aurora-postgresql
11596
116-
11797
- mysql
11898
119-
12099
- postgres
121100
type: string
122101
name:
123102
description: |-
124103
The name of the DB cluster parameter group.
125104
126-
127105
Constraints:
128106
129-
130107
- Must not match the name of an existing DB cluster parameter group.
131108
132-
133109
This value is stored as a lowercase string.
134110
type: string
135111
parameterOverrides:
@@ -140,14 +116,11 @@ spec:
140116
description: |-
141117
A list of parameters in the DB cluster parameter group to modify.
142118
143-
144119
Valid Values (for the application method): immediate | pending-reboot
145120
146-
147121
You can use the immediate value with dynamic parameters only. You can use
148122
the pending-reboot value for both dynamic and static parameters.
149123
150-
151124
When the application method is immediate, changes to dynamic parameters are
152125
applied immediately to the DB clusters associated with the parameter group.
153126
When the application method is pending-reboot, changes to dynamic and static
@@ -158,7 +131,6 @@ spec:
158131
This data type is used as a request parameter in the ModifyDBParameterGroup
159132
and ResetDBParameterGroup actions.
160133
161-
162134
This data type is used as a response element in the DescribeEngineDefaultParameters
163135
and DescribeDBParameters actions.
164136
properties:
@@ -194,7 +166,6 @@ spec:
194166
description: |-
195167
Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
196168
197-
198169
For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
199170
in the Amazon RDS User Guide.
200171
properties:
@@ -227,7 +198,6 @@ spec:
227198
when it has verified that an "adopted" resource (a resource where the
228199
ARN annotation was set by the Kubernetes user on the CR) exists and
229200
matches the supplied CR's Spec field values.
230-
TODO(vijat@): Find a better strategy for resources that do not have ARN in CreateOutputResponse
231201
https://github.com/aws/aws-controllers-k8s/issues/270
232202
type: string
233203
ownerAccountID:
@@ -286,7 +256,6 @@ spec:
286256
This data type is used as a request parameter in the ModifyDBParameterGroup
287257
and ResetDBParameterGroup actions.
288258
289-
290259
This data type is used as a response element in the DescribeEngineDefaultParameters
291260
and DescribeDBParameters actions.
292261
properties:

0 commit comments

Comments
 (0)