From: Sébastien Han Date: Thu, 26 Nov 2015 16:48:04 +0000 (+0100) Subject: Do not track site example file X-Git-Tag: v1.0.0~88^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ec6692257fb71064587f0dde3799f8142bd6c3d2;p=ceph-ansible.git Do not track site example file Signed-off-by: Sébastien Han --- diff --git a/.gitignore b/.gitignore index 28c8fd1fa..016baf070 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ group_vars/mdss group_vars/rgws group_vars/restapis *.DS_Store +site.yml diff --git a/site.yml b/site.yml deleted file mode 100644 index 6525d5723..000000000 --- a/site.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -# Defines deployment design and assigns role to server groups - -- hosts: mons - sudo: True - roles: - - ceph-mon - - { role: ceph-restapi, when: restapi_group_name is defined and restapi_group_name in group_names } - #serial: 1 # ENABLE THIS WHEN DEPLOYING MONITORS ON DOCKER CONTAINERS - -- hosts: osds - sudo: True - roles: - - ceph-osd - -- hosts: mdss - sudo: True - roles: - - ceph-mds - -- hosts: rgws - sudo: True - roles: - - ceph-rgw diff --git a/site.yml.sample b/site.yml.sample new file mode 100644 index 000000000..6525d5723 --- /dev/null +++ b/site.yml.sample @@ -0,0 +1,24 @@ +--- +# Defines deployment design and assigns role to server groups + +- hosts: mons + sudo: True + roles: + - ceph-mon + - { role: ceph-restapi, when: restapi_group_name is defined and restapi_group_name in group_names } + #serial: 1 # ENABLE THIS WHEN DEPLOYING MONITORS ON DOCKER CONTAINERS + +- hosts: osds + sudo: True + roles: + - ceph-osd + +- hosts: mdss + sudo: True + roles: + - ceph-mds + +- hosts: rgws + sudo: True + roles: + - ceph-rgw