Merge "Add upgrade play for ceph"

This commit is contained in:
Jenkins 2016-02-26 22:49:26 +00:00 committed by Gerrit Code Review
commit e4c027e395
4 changed files with 16 additions and 5 deletions

View File

@ -12,4 +12,3 @@
- "{{ node_config_directory }}/ceph-mon/:{{ container_config_directory }}/:ro"
- "ceph_mon:/var/lib/ceph"
- "ceph_mon_config:/etc/ceph"
when: inventory_hostname in groups['ceph-mon']

View File

@ -45,6 +45,4 @@
with_together:
- id.results
- osds
when:
- inventory_hostname in groups['ceph-osd']
- osds
when: osds

View File

@ -6,4 +6,3 @@
image: "{{ ceph_rgw_image_full }}"
name: "ceph_rgw"
volumes: "{{ node_config_directory }}/ceph-rgw/:{{ container_config_directory }}/:ro"
when: inventory_hostname in groups['ceph-rgw']

View File

@ -1 +1,16 @@
---
- include: config.yml
- include: start_mons.yml
serial: "1"
when: inventory_hostname in groups['ceph-mon']
- include: start_osds.yml
serial: "1"
when: inventory_hostname in groups['ceph-osd']
- include: start_rgws.yml
serial: "30%"
when:
- inventory_hostname in groups['ceph-rgw']
- enable_ceph_rgw | bool