Ansible Role repo_proxysql¶
This role deploys the ProxySQL Package Repository.
Mandatory Role Variables¶
repo_proxysql__version__host_var / repo_proxysql__version__group_var
The version of the ProxySQL repository which should be installed. For the usage in
host_vars/group_vars(can only be used in one group at a time).Type: String.
Example:
# mandatory
repo_proxysql__version__host_var: '2.7' # or '2.6', '2.5', '2.4', '2.3', '2.2'
Optional Role Variables¶
repo_proxysql__basic_auth_login
Use HTTP basic auth to login to the repository. Defaults to
lfops__repo_basic_auth_login, making it easy to set this for allrepo_*roles.Type: Dictionary.
Default:
'{{ lfops__repo_basic_auth_login | default("") }}'
repo_proxysql__mirror_url
Set the URL to a custom mirror server providing the repository. Defaults to
lfops__repo_mirror_urlto allow easily setting the same URL for allrepo_*roles. Iflfops__repo_mirror_urlis not set, the default mirrors of the repo are used.Type: String.
Default:
'{{ lfops__repo_mirror_url | default("") }}'
Example:
# optional
repo_proxysql__basic_auth_login:
username: 'my-username'
password: 'linuxfabrik'
repo_proxysql__mirror_url: 'https://mirror.example.com'