Added ceph mon and osd funcionality (#5)
* add TARGET
Try to define what we are goint to achieve.
* ceph monitors
* added new mon and osd funcionalities
* Documentation fixes
* Added testing metadata
* New ceph_osd_disk salt grain for crushmap generation
* Fixed the map.jinja and common module
* Fixed map for OSD role
* Completed the pool enforcement
* Pass context to the crushmap template from mine information
* RadosGW updates
* Fixed Rados gateway
* push origin master
* Service metadata fixes
* Fixed wrong metadata dir
* changed radosgw keyring path, changed watch for radosgw service
* set osd pool parameters
* added opts for osd mount, few minor fixes for states osd and mon
* added grains for crush parent
diff --git a/_modules/ceph_ng.py b/_modules/ceph_ng.py
new file mode 100644
index 0000000..824ae43
--- /dev/null
+++ b/_modules/ceph_ng.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+'''
+Module to provide ceph control with salt.
+:depends: - ceph_cfg Python module
+.. versionadded:: 2017.7.0
+'''
+# Import Python Libs
+from __future__ import absolute_import
+import logging
+
+
+log = logging.getLogger(__name__)
+
+__virtualname__ = 'ceph_ng'
+
+
+def __virtual__():
+ return __virtualname__