Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix role to allow jinja2_native=True #232

Merged
merged 5 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tasks/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- name: debian | adding MariaDB Repo Keys
apt_key:
keyserver: "{{ mariadb_debian_repo_keyserver }}"
id: "{{ mariadb_debian_repo_key }}"
id: "{{ mariadb_debian_repo_key|string }}"
state: "present"
become: true
when: galera_enable_mariadb_repo|bool and not mariadb_debian_repo_key_url is defined
Expand Down
2 changes: 1 addition & 1 deletion tasks/setup_cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
galera_extra_wsrep_provider_options: >
{{
galera_extra_wsrep_provider_options | combine({
'ist.recv_addr': galera_ist_recv_addr + ":" + galera_ist_recv_addr_port,
'ist.recv_addr': galera_ist_recv_addr + ":" + galera_ist_recv_addr_port|string,
'ist.recv_bind': galera_ist_recv_bind
})
}}
Expand Down
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
galera_cluster_nodes: "\
{% set _galera_cluster_nodes = [] %}\
{% for host in groups[ galera_cluster_nodes_group ] %}\
{{ _galera_cluster_nodes.append( host ) }}\
{{ _galera_cluster_nodes.append( host )|default('', True) }}\
{% endfor %}\
{{ _galera_cluster_nodes }}"
Loading