Merge "Use inventory_hostname for Ceph bootstrap"
This commit is contained in:
commit
44357460b8
@ -19,7 +19,7 @@
|
|||||||
register: ceph_mon_config_volume
|
register: ceph_mon_config_volume
|
||||||
|
|
||||||
- name: Writing hostname of host with existing cluster files to temp file
|
- name: Writing hostname of host with existing cluster files to temp file
|
||||||
local_action: copy content={{ ansible_hostname }} dest=/tmp/kolla_ceph_cluster mode=0600
|
local_action: copy content="{{ inventory_hostname }}" dest=/tmp/kolla_ceph_cluster mode=0600
|
||||||
changed_when: False
|
changed_when: False
|
||||||
always_run: True
|
always_run: True
|
||||||
when: not ceph_mon_config_volume.changed
|
when: not ceph_mon_config_volume.changed
|
||||||
|
@ -25,4 +25,4 @@
|
|||||||
|
|
||||||
- name: Setting host for cluster files
|
- name: Setting host for cluster files
|
||||||
set_fact:
|
set_fact:
|
||||||
delegate_host: "{{ ansible_hostname }}"
|
delegate_host: "{{ inventory_hostname }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user