ceph-ansible/roles/ceph-mon/tasks/openstack_config.yml

18 lines
525 B
YAML
Raw Normal View History

---
- name: create openstack pool
command: rados mkpool {{ item }}
with_items:
- "{{ openstack_glance_pool }}"
- "{{ openstack_cinder_pool }}"
- "{{ openstack_nova_pool }}"
- "{{ openstack_cinder_backup_pool }}"
changed_when: false
ignore_errors: true
- name: create openstack keys
command: >
ceph auth get-or-create {{ item.name }} {{ item.value }} -o /etc/ceph/ceph.{{ item.name }}.keyring
creates=/etc/ceph/ceph.{{ item.name }}.keyring
with_items: openstack_keys
changed_when: false