mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1107 from font/osd_keyring_err
Fix error caused by missing OSD cluster keyringpull/1088/merge v2.0.0
commit
68668333eb
|
@ -10,7 +10,7 @@
|
||||||
wait_for
|
wait_for
|
||||||
path="{{ playbook_dir }}/{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
path="{{ playbook_dir }}/{{ fetch_directory }}/docker_mon_files/{{ item.0 }}"
|
||||||
become: false
|
become: false
|
||||||
with_together: "{{ ceph_config_keys }}"
|
with_items: "{{ ceph_config_keys }}"
|
||||||
|
|
||||||
- name: stat for ceph config and keys
|
- name: stat for ceph config and keys
|
||||||
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
|
local_action: stat path={{ fetch_directory }}/docker_mon_files/{{ item }}
|
||||||
|
@ -28,4 +28,4 @@
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
changed_when: false
|
changed_when: false
|
||||||
with_together: "{{ ceph_config_keys }}"
|
with_items: "{{ ceph_config_keys }}"
|
||||||
|
|
|
@ -22,7 +22,7 @@ cluster_subnet: 192.168.1
|
||||||
# MEMORY
|
# MEMORY
|
||||||
memory: 1024
|
memory: 1024
|
||||||
|
|
||||||
disks: "[ '/dev/sdb', '/dev/sdc' ]"
|
disks: "[ '/dev/sda', '/dev/sdb' ]"
|
||||||
|
|
||||||
eth: 'enp0s8'
|
eth: 'enp0s8'
|
||||||
vagrant_box: centos/atomic-host
|
vagrant_box: centos/atomic-host
|
||||||
|
|
Loading…
Reference in New Issue