![Matus Jenca](/assets/img/avatar_default.png)
This commit adds TLS connection between ProxySQL and MariaDB. Frontend TLS ( between services and ProxySQL) will be added in another commit. Parialy Implements: mariadb-ssl-support Change-Id: I154cbb096469c5515c9d8156c2c1c5dd07b95849 Signed-off-by: Matus Jenca <matus.jenca@dnation.cloud>
16 lines
581 B
YAML
16 lines
581 B
YAML
---
|
|
- name: Check mariadb containers
|
|
become: true
|
|
kolla_container:
|
|
action: "compare_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ item.value.container_name }}"
|
|
image: "{{ item.value.image }}"
|
|
volumes: "{{ item.value.volumes }}"
|
|
dimensions: "{{ item.value.dimensions }}"
|
|
environment: "{{ item.value.environment | default(omit) }}"
|
|
healthcheck: "{{ item.value.healthcheck | default(omit) }}"
|
|
with_dict: "{{ mariadb_services | select_services_enabled_and_mapped_to_host }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|