Skip to content

Commit

Permalink
Bump MariaDB versions for RDS tests (ansible-collections#1238)
Browse files Browse the repository at this point in the history
Bump MariaDB versions for RDS tests

MariaDB 10.3.31 is not available anymore. This results in the following exception:
botocore.exceptions.ClientError: An error occurred (InvalidParameterCombination) when calling the CreateDBInstance operation: Cannot find version 10.3.31 for mariadb

To get a list of the version available:
$ aws rds describe-db-engine-versions --engine mariadb --query "DBEngineVersions[].EngineVersion"
  • Loading branch information
tremble committed Jan 9, 2023
1 parent 4f84bd2 commit 4dfe0e1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/rds_mariadb_version-10.6.10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trivial:
- Bump test MariaDB version to 10.6.10 - 10.3.31 no longer available
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ storage_type: io1
iops: 1000

# For mariadb tests
mariadb_engine_version: 10.3.31
mariadb_engine_version: 10.6.10
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ db_instance_class: db.t3.micro
allocated_storage: 20

# For mariadb tests
mariadb_engine_version: 10.3.31
mariadb_engine_version: 10.6.10
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ password: "{{ lookup('password', '/dev/null') }}"
db_instance_class: db.t3.micro
allocated_storage: 10
engine: 'mariadb'
mariadb_engine_version: 10.3.31
mariadb_engine_version: 10.6.10

# Create snapshot
snapshot_id: '{{ instance_id }}-snapshot'
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ db_instance_class: db.t3.micro
allocated_storage: 20

# For mariadb tests
mariadb_engine_version: 10.3.31
mariadb_engine_version_2: 10.4.21
mariadb_engine_version: 10.5.17
mariadb_engine_version_2: 10.6.10

0 comments on commit 4dfe0e1

Please sign in to comment.