You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: examples/rds/db-aurora-cluster.yaml
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,9 @@ spec:
6
6
forProvider:
7
7
region: us-east-1
8
8
engine: aurora-mysql
9
-
masterUsername: admin
9
+
allowMajorVersionUpgrade: true # unset per default (Note: dbClusterParameterGroup with correct dbParameterClusterGroupFamily may needed, before majorVersion upgrade possible)
10
+
# for majorVersion upgrade via Cluster - depending on the setup - instances may need adjustments: before (e.g. supported instanceClass) or after (e.g. matching dbParameterGroup) the upgrade
Copy file name to clipboardExpand all lines: examples/rds/db-instance.yaml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,11 @@ spec:
9
9
autoMinorVersionUpgrade: true
10
10
autogeneratePassword: true
11
11
backupRetentionPeriod: 14
12
-
dbInstanceClass: db.t2.micro
12
+
dbInstanceClass: db.t3.micro# needs to support engine and -version (see AWS Docs: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#Concepts.DBInstanceClass.Support)
13
13
dbName: example
14
14
engine: postgres
15
15
engineVersion: "12.9"
16
+
allowMajorVersionUpgrade: true # unset per default (Note: supported dbInstanceClass and dbParameterGroup with correct dbParameterGroupFamily needed, before majorVersion upgrade possible; applyImmediately matters)
0 commit comments