mirror of https://github.com/ceph/ceph-ansible.git
19 lines
572 B
YAML
19 lines
572 B
YAML
---
|
|
- name: create openstack pool
|
|
command: ceph osd pool create {{ item.name }} {{ item.pg_num }}
|
|
with_items:
|
|
- "{{ openstack_glance_pool }}"
|
|
- "{{ openstack_cinder_pool }}"
|
|
- "{{ openstack_nova_pool }}"
|
|
- "{{ openstack_cinder_backup_pool }}"
|
|
changed_when: false
|
|
failed_when: false
|
|
|
|
- name: create openstack keys
|
|
command: ceph auth get-or-create {{ item.name }} {{ item.value }} -o /etc/ceph/ceph.{{ item.name }}.keyring
|
|
args:
|
|
creates: /etc/ceph/ceph.{{ item.name }}.keyring
|
|
with_items: openstack_keys
|
|
changed_when: false
|
|
when: cephx
|