Downgrade python and ansible versions, create python packages list and change mariadb upstream

This commit is contained in:
2025-11-06 02:08:08 +03:00
parent aee0b1dab9
commit 2a1dc74039
5 changed files with 12 additions and 12 deletions

View File

@ -13,18 +13,16 @@
| combine(inventory__host_environment | d({})) }}'
vars:
mariadb_server__upstream_mirror: 'https://mirror.netcologne.de/mariadb/mariadb-{{ mariadb_server__upstream_version }}/repo/{{ ansible_distribution | lower }}'
mariadb_server__flavor: '{{ ansible_local.mariadb.flavor
|d(mariadb_server__flavor_map[ansible_distribution_release] | d("mariadb_upstream")) }}'
mariadb_server__upstream_version: '11.2'
mariadb_server__upstream_version: '11.8.3'
mariadb_server__bind_address: '127.0.0.1'
mariadb_server__mysqld_performance_options:
'innodb_buffer_pool_instances': '{{ ansible_processor_vcpus | d(1) }}'
'innodb_buffer_pool_size': '{{ (ansible_memtotal_mb / 2) | int }}M'
'innodb_log_file_size': '{{ (ansible_memtotal_mb / 2) / 4 | int }}M'
'query_cache_type': '1'
'query_cache_size': '1M'
'query_cache_limit': '10M'
'join_buffer_size': '1M'
'innodb_log_file_size': '{{ ((ansible_memtotal_mb / 2) / 4) | int }}M'
'query_cache_type': '0'
'join_buffer_size': '10M'
'performance_schema': 'ON'
'skip-name-resolve': 'ON'
# mariadb_server__options: