
This is a prerequisite for patchset #745164 This fixes unwanted restarts during copying of certificates. By removing conditional statements from role handlers in #745164, copying certificates caused containers to restart, this is unwanted during the genconfig process. However, if we would remove handler notifiers from copying certificates, the container would never restart, since from #745164, containers will restart only if any of the files specified in config.json change. Certificates are now copied to intermediary location inside of the container, from which the script kolla_copy_cacerts will install them in the trust store. Depends-on: https://review.opendev.org/c/openstack/kolla/+/926882 Change-Id: Ib89048c7e0f250182c4bf57d8c8a1b5478e9b4ab Signed-off-by: Roman Krček <roman.krcek@tietoevry.com>
74 lines
2.5 KiB
Django/Jinja
74 lines
2.5 KiB
Django/Jinja
{
|
|
"command": "/etc/proxysql_run.sh",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/proxysql_run.sh",
|
|
"dest": "/etc/proxysql_run.sh",
|
|
"owner": "proxysql",
|
|
"perm": "0700"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/proxysql.yaml",
|
|
"dest": "/etc/proxysql/proxysql.yaml",
|
|
"owner": "proxysql",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/users/",
|
|
"dest": "/etc/proxysql/users",
|
|
"owner": "proxysql",
|
|
"perm": "0700"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/rules/",
|
|
"dest": "/etc/proxysql/rules",
|
|
"owner": "proxysql",
|
|
"perm": "0700"
|
|
}{% if kolla_copy_ca_into_containers | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/ca-certificates",
|
|
"dest": "/var/lib/kolla/share/ca-certificates",
|
|
"owner": "root",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
{% if database_enable_tls_backend | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/ca-certificates/root.crt",
|
|
"dest": "/etc/proxysql/certs/root.crt",
|
|
"owner": "proxysql",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/mariadb-cert.pem",
|
|
"dest": "/etc/proxysql/certs/mariadb-cert.pem",
|
|
"owner": "proxysql",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/mariadb-key.pem",
|
|
"dest": "/etc/proxysql/certs/mariadb-key.pem",
|
|
"owner": "proxysql",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
{% if database_enable_tls_internal | bool %},
|
|
{
|
|
"source": "{{ container_config_directory }}/ca-certificates/root.crt",
|
|
"dest": "/var/lib/proxysql/proxysql-ca.pem",
|
|
"owner": "proxysql",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/proxysql-cert.pem",
|
|
"dest": "/var/lib/proxysql/proxysql-cert.pem",
|
|
"owner": "proxysql",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/proxysql-key.pem",
|
|
"dest": "/var/lib/proxysql/proxysql-key.pem",
|
|
"owner": "proxysql",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
]
|
|
}
|