Skip to content
Snippets Groups Projects
Commit e76f862e authored by SamYaple's avatar SamYaple
Browse files

Add upgrade play for ceph

Ceph is pretty easy to work with. Upgrade mons, then osds, then rgws

We want to eventually make these serial values configurable, but for
now due to cephs delicate distributed network nature it is safest to
only run 1 change at a time.

Change-Id: Icc721ab3651379c28fee853ca95f9e3ddf102998
Partially-Implements: blueprint upgrade-kolla
Implements: blueprint upgrade-ceph
parent 287e4faf
No related branches found
No related tags found
No related merge requests found
......@@ -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']
......@@ -45,6 +45,4 @@
with_together:
- id.results
- osds
when:
- inventory_hostname in groups['ceph-osd']
- osds
when: osds
......@@ -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']
---
- 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment