@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
3
3
kind : CustomResourceDefinition
4
4
metadata :
5
5
annotations :
6
- controller-gen.kubebuilder.io/version : v0.14.0
6
+ controller-gen.kubebuilder.io/version : v0.16.2
7
7
name : dbclusterparametergroups.rds.services.k8s.aws
8
8
spec :
9
9
group : rds.services.k8s.aws
41
41
description : |-
42
42
DBClusterParameterGroupSpec defines the desired state of DBClusterParameterGroup.
43
43
44
-
45
44
Contains the details of an Amazon RDS DB cluster parameter group.
46
45
47
-
48
46
This data type is used as a response element in the DescribeDBClusterParameterGroups
49
47
action.
50
48
properties :
@@ -58,78 +56,56 @@ spec:
58
56
and can be applied only to a DB cluster running a database engine and engine
59
57
version compatible with that DB cluster parameter group family.
60
58
61
-
62
59
# Aurora MySQL
63
60
64
-
65
61
Example: aurora5.6, aurora-mysql5.7, aurora-mysql8.0
66
62
67
-
68
63
# Aurora PostgreSQL
69
64
70
-
71
65
Example: aurora-postgresql9.6
72
66
73
-
74
67
# RDS for MySQL
75
68
76
-
77
69
Example: mysql8.0
78
70
79
-
80
71
# RDS for PostgreSQL
81
72
82
-
83
73
Example: postgres12
84
74
85
-
86
75
To list all of the available parameter group families for a DB engine, use
87
76
the following command:
88
77
89
-
90
78
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
91
79
--engine <engine>
92
80
93
-
94
81
For example, to list all of the available parameter group families for the
95
82
Aurora PostgreSQL DB engine, use the following command:
96
83
97
-
98
84
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
99
85
--engine aurora-postgresql
100
86
101
-
102
87
The output contains duplicates.
103
88
104
-
105
89
The following are the valid DB engine values:
106
90
107
-
108
91
- aurora (for MySQL 5.6-compatible Aurora)
109
92
110
-
111
93
- aurora-mysql (for MySQL 5.7-compatible and MySQL 8.0-compatible Aurora)
112
94
113
-
114
95
- aurora-postgresql
115
96
116
-
117
97
- mysql
118
98
119
-
120
99
- postgres
121
100
type : string
122
101
name :
123
102
description : |-
124
103
The name of the DB cluster parameter group.
125
104
126
-
127
105
Constraints:
128
106
129
-
130
107
- Must not match the name of an existing DB cluster parameter group.
131
108
132
-
133
109
This value is stored as a lowercase string.
134
110
type : string
135
111
parameterOverrides :
@@ -140,14 +116,11 @@ spec:
140
116
description : |-
141
117
A list of parameters in the DB cluster parameter group to modify.
142
118
143
-
144
119
Valid Values (for the application method): immediate | pending-reboot
145
120
146
-
147
121
You can use the immediate value with dynamic parameters only. You can use
148
122
the pending-reboot value for both dynamic and static parameters.
149
123
150
-
151
124
When the application method is immediate, changes to dynamic parameters are
152
125
applied immediately to the DB clusters associated with the parameter group.
153
126
When the application method is pending-reboot, changes to dynamic and static
@@ -158,7 +131,6 @@ spec:
158
131
This data type is used as a request parameter in the ModifyDBParameterGroup
159
132
and ResetDBParameterGroup actions.
160
133
161
-
162
134
This data type is used as a response element in the DescribeEngineDefaultParameters
163
135
and DescribeDBParameters actions.
164
136
properties :
@@ -194,7 +166,6 @@ spec:
194
166
description : |-
195
167
Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
196
168
197
-
198
169
For more information, see Tagging Amazon RDS Resources (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html)
199
170
in the Amazon RDS User Guide.
200
171
properties :
@@ -227,7 +198,6 @@ spec:
227
198
when it has verified that an "adopted" resource (a resource where the
228
199
ARN annotation was set by the Kubernetes user on the CR) exists and
229
200
matches the supplied CR's Spec field values.
230
- TODO(vijat@): Find a better strategy for resources that do not have ARN in CreateOutputResponse
231
201
https://github.com/aws/aws-controllers-k8s/issues/270
232
202
type : string
233
203
ownerAccountID :
@@ -286,7 +256,6 @@ spec:
286
256
This data type is used as a request parameter in the ModifyDBParameterGroup
287
257
and ResetDBParameterGroup actions.
288
258
289
-
290
259
This data type is used as a response element in the DescribeEngineDefaultParameters
291
260
and DescribeDBParameters actions.
292
261
properties :
0 commit comments