cacf08f0a6
kolla-kubernetes is using its own configuration generation[0], so it is time for kolla-ansible to remove the related code to simplify the logical. [0] https://github.com/openstack/kolla-kubernetes/tree/master/ansible Change-Id: I7bb0b7fe3b8eea906613e936d5e9d19f4f2e80bb Implements: blueprint clean-k8s-config
55 lines
1.8 KiB
Django/Jinja
55 lines
1.8 KiB
Django/Jinja
{%- set wsrep_driver = '/usr/lib/galera/libgalera_smm.so' if kolla_base_distro == 'ubuntu' else '/usr/lib64/galera/libgalera_smm.so' %}
|
|
|
|
[client]
|
|
default-character-set=utf8
|
|
|
|
[mysql]
|
|
default-character-set=utf8
|
|
|
|
[mysqld]
|
|
bind-address={{ api_interface_address }}
|
|
port={{ mariadb_port }}
|
|
|
|
log-error=/var/log/kolla/mariadb/mariadb.log
|
|
|
|
log-bin=mysql-bin
|
|
binlog_format=ROW
|
|
default-storage-engine=innodb
|
|
innodb_autoinc_lock_mode=2
|
|
|
|
collation-server = utf8_general_ci
|
|
init-connect='SET NAMES utf8'
|
|
character-set-server = utf8
|
|
|
|
datadir=/var/lib/mysql/
|
|
|
|
wsrep_cluster_address=gcomm://{% if (groups['mariadb'] | length) > 1 %}{% for host in groups['mariadb'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ mariadb_wsrep_port }}{% if not loop.last %},{% endif %}{% endfor %}{% endif %}
|
|
|
|
wsrep_provider_options=gmcast.listen_addr=tcp://{{ api_interface_address }}:{{ mariadb_wsrep_port }};ist.recv_addr={{ api_interface_address }}:{{ mariadb_ist_port }}
|
|
|
|
wsrep_node_address={{ api_interface_address }}:{{ mariadb_wsrep_port }}
|
|
wsrep_sst_receive_address={{ api_interface_address }}:{{ mariadb_sst_port }}
|
|
|
|
wsrep_provider={{ wsrep_driver }}
|
|
wsrep_cluster_name="{{ database_cluster_name }}"
|
|
wsrep_node_name={{ ansible_hostname }}
|
|
wsrep_sst_method=xtrabackup-v2
|
|
wsrep_sst_auth={{ database_user }}:{{ database_password }}
|
|
wsrep_slave_threads=4
|
|
wsrep_notify_cmd=/usr/local/bin/wsrep-notify.sh
|
|
|
|
max_connections=10000
|
|
|
|
key_buffer_size = '64M'
|
|
max_heap_table_size = '64M'
|
|
tmp_table_size = '64M'
|
|
{% set dynamic_pool_size_mb = (hostvars[inventory_hostname]['ansible_memtotal_mb'] * 0.4) | round | int %}
|
|
{% if dynamic_pool_size_mb < 8192 %}
|
|
innodb_buffer_pool_size = '{{ dynamic_pool_size_mb }}M'
|
|
{% else %}
|
|
innodb_buffer_pool_size = '8192M'
|
|
{% endif %}
|
|
|
|
[server]
|
|
pid-file=/var/lib/mysql/mariadb.pid
|