Project

General

Profile

Feature #1430

Updated by Sage Weil about 11 years ago

create methods for the installa nd ceph tasks to upgrade packages (on all or certain role remotes), and to restart ceph daemons explicitly. 
 <pre> 
 - install: 
 - ceph: 
 ... 
 - install.upgrade: 
     all: 
       branch: end 
 - ceph.restart: 
 ... 
 </pre> 
 or 
 <pre> 
 - install: 
 - ceph: 
 ... 
 - install.upgrade: 
     client.0: 
       branch: end 
     osd.0: 
       branch: other 
 - ceph.restart: [client.0, osd.0] 
 ... 
 - install.upgrade: 
     all: 
       branch: other 
 - ceph.restart: 
 ... 
 </pre>

Back