ceph-ansible/roles/ceph-common/README.md

79 lines
1.5 KiB
Markdown
Raw Normal View History

2015-08-06 21:13:46 +08:00
# Ansible role: Ceph Common
2015-08-06 21:13:46 +08:00
This role does several things prior to bootstrapping your Ceph cluster:
2015-08-06 21:13:46 +08:00
* Checks the system and validates that Ceph can be installed
* Tunes the operating system if the node is an OSD server
* Installs Ceph
2015-08-06 21:13:46 +08:00
* Generates `ceph.conf`
# Requirements
Move the `plugins/actions/config_template.py` file to your top level playbook directory.
Edit your `ansible.cfg` like so:
action_plugins = plugins/actions
Depending on how you are managing your playbook, the path might be different so edit the file accordingly if necessary.
# Role variables
2015-08-06 21:13:46 +08:00
Have a look at `defaults/main.yml`.
## Mandatory variables
2015-08-06 22:27:52 +08:00
* Install source, choose one of these:
* `ceph_stable`
* `ceph_dev`
* `ceph_rhcs`
* `ceph_custom`
* `journal_size`
* `monitor_interface`
2015-08-06 21:13:46 +08:00
* `public_network`
* `cluster_network`
## Handlers
2015-08-06 22:27:52 +08:00
* update apt cache
* restart ceph-mon
* restart ceph-osd
* restart ceph-mds
* restart ceph-rgw
* restart ceph-restapi
# Dependencies
2015-08-06 22:29:30 +08:00
None
# Example Playbook
```
- hosts: servers
remote_user: ubuntu
roles:
- { role: leseb.ceph-common }
```
# Misc
2015-08-06 22:27:52 +08:00
This role is a **mandatory** dependency for the following roles:
* ceph-mon
* ceph-osd
* ceph-mds
* ceph-rgw
* ceph-restapi
# Contribution
2015-08-06 21:13:46 +08:00
**THIS REPOSITORY DOES NOT ACCEPT PULL REQUESTS**.
2015-08-06 21:15:42 +08:00
**PULL REQUESTS MUST GO THROUGH [CEPH-ANSIBLE](https://github.com/ceph/ceph-ansible)**.
# License
Apache
# Author Information
This role was created by [Sébastien Han](http://sebastien-han.fr/).