Skip to content
Open
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
4 changes: 4 additions & 0 deletions .ansible-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---

skip_list:
- var-naming[no-role-prefix]
2 changes: 2 additions & 0 deletions ansible/ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ error_on_undefined_vars = false
timeout = 30
forks = 10

roles_path = ../roles

[inventory]
enable_plugins = yaml
2 changes: 1 addition & 1 deletion roles/ceph/templates/ceph.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public_network = {{ ceph_network_public }}
private_network = {{ ceph_network_private }}
{% endif %}
auth allow insecure global id reclaim = false
{% if ansible_default_ipv6['address'] | default("") %}
{% if ceph_ip_address | default(ansible_default_ipv6['address'] | default('')) | ansible.utils.ipv6 %}
ms bind ipv6 = true
ms bind ipv4 = false
{% else %}
Expand Down
Loading