Avoid automatic DB upgrades (#39275)

Closes #39274

Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
This commit is contained in:
Alexander Schwartz 2025-04-29 09:02:10 +02:00 committed by GitHub
parent 2c26609340
commit 54499d94ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -116,6 +116,7 @@ aws rds create-db-cluster \
# For now only two AZs in each region are supported due to the two subnets created above
for i in $( seq ${AURORA_INSTANCES} ); do
aws rds create-db-instance \
--no-auto-minor-version-upgrade \
--db-cluster-identifier ${AURORA_CLUSTER} \
--db-instance-identifier "${AURORA_CLUSTER}-instance-${i}" \
--db-instance-class ${AURORA_INSTANCE_CLASS} \

View File

@ -306,6 +306,7 @@ The values specified here must be used when configuring the {project_name} datab
[source,bash]
----
aws rds create-db-instance \
--no-auto-minor-version-upgrade \
--db-cluster-identifier keycloak-aurora \
--db-instance-identifier "keycloak-aurora-instance-1" \
--db-instance-class db.t4g.large \
@ -319,6 +320,7 @@ The values specified here must be used when configuring the {project_name} datab
[source,bash]
----
aws rds create-db-instance \
--no-auto-minor-version-upgrade \
--db-cluster-identifier keycloak-aurora \
--db-instance-identifier "keycloak-aurora-instance-2" \
--db-instance-class db.t4g.large \