From: Vasu Kulkarni Date: Wed, 7 Dec 2016 03:52:05 +0000 (-0800) Subject: use ceph-client role X-Git-Tag: 1.1.0~479^2~9 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4905c0b0b13bd066b3822d8c52cabfc203aef183;p=teuthology.git use ceph-client role use ceph-client role for clients Signed-off-by: Vasu Kulkarni --- diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index 1738940813..16fd2978d5 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -33,6 +33,11 @@ class CephAnsible(Task): become=True, roles=['ceph-rgw'], ), + dict( + hosts='clients', + become=True, + roles=['ceph-client'], + ), dict( hosts='restapis', become=True, @@ -99,6 +104,7 @@ class CephAnsible(Task): mons='mon', mdss='mds', osds='osd', + clients='client', ) hosts_dict = dict() for group in sorted(groups_to_roles.keys()):