We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a077db6 commit 2eb50e1Copy full SHA for 2eb50e1
roles/ceph/defaults/main.yml
@@ -15,6 +15,7 @@ ceph_release_majors:
15
ceph_keyrings: ['admin']
16
ceph_network_public: ''
17
ceph_network_private: ''
18
+ceph_ip_address: ''
19
ceph_rbd_cache: "128Mi"
20
ceph_rbd_cache_max: "96Mi"
21
ceph_rbd_cache_target: "64Mi"
roles/ceph/templates/ceph.conf.j2
@@ -13,7 +13,7 @@ public_network = {{ ceph_network_public }}
13
private_network = {{ ceph_network_private }}
14
{% endif %}
auth allow insecure global id reclaim = false
-{% if ansible_default_ipv6['address'] | default("") %}
+{% if ceph_ip_address | default(ansible_default_ipv6['address'] | default(''), true) | ansible.utils.ipv6 %}
ms bind ipv6 = true
ms bind ipv4 = false
{% else %}
0 commit comments