From 4905c0b0b13bd066b3822d8c52cabfc203aef183 Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Tue, 6 Dec 2016 19:52:05 -0800 Subject: [PATCH] use ceph-client role use ceph-client role for clients Signed-off-by: Vasu Kulkarni --- teuthology/task/ceph_ansible.py | 6 ++++++ 1 file changed, 6 insertions(+) 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()): -- 2.39.5