mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Update reclass_adapter documentation
Signed-off-by: martin f. krafft <madduck@madduck.net>
This commit is contained in:
parent
bf79341472
commit
dccc87b34a
@ -1,10 +1,13 @@
|
|||||||
'''
|
'''
|
||||||
ext_pillar adapter for reclass.
|
This ``ext_pillar`` plugin provides access to the |reclass| database, such
|
||||||
|
that Pillar data for a specific minion are fetched using |reclass|.
|
||||||
|
|
||||||
Please refer to the file ``README.Salt`` in the reclass source for more
|
You can find more information about |reclass| at
|
||||||
information on how to use these. In a nutshell, you'll just add the plugin to
|
http://reclass.pantsfullofunix.net.
|
||||||
the ext_pillar hash in the master config and tell reclass by way of a few
|
|
||||||
options how and where to find the inventory:
|
To use the plugin, add it to the ``ext_pillar`` list in the Salt master config
|
||||||
|
and tell |reclass| by way of a few options how and where to find the
|
||||||
|
inventory:
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
@ -13,13 +16,12 @@ options how and where to find the inventory:
|
|||||||
storage_type: yaml_fs
|
storage_type: yaml_fs
|
||||||
base_inventory_uri: /srv/salt
|
base_inventory_uri: /srv/salt
|
||||||
|
|
||||||
This would cause reclass to read the inventory from YAML files in
|
This would cause |reclass| to read the inventory from YAML files in
|
||||||
``/srv/salt/nodes`` and ``/srv/salt/classes``.
|
``/srv/salt/nodes`` and ``/srv/salt/classes``.
|
||||||
|
|
||||||
More information about reclass: http://github.com/madduck/reclass
|
If you are also using |reclass| as ``master_tops`` plugin, and you want to
|
||||||
|
avoid having to specify the same information for both, use YAML anchors (take
|
||||||
If you are also using master_tops and you want to avoid having to specify the
|
note of the differing data types for ``ext_pillar`` and ``master_tops``):
|
||||||
same information for both, use YAML anchors:
|
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
@ -37,7 +39,10 @@ same information for both, use YAML anchors:
|
|||||||
If you want to run reclass from source, rather than installing it, you can
|
If you want to run reclass from source, rather than installing it, you can
|
||||||
either let the master know via the ``PYTHONPATH`` environment variable, or by
|
either let the master know via the ``PYTHONPATH`` environment variable, or by
|
||||||
setting the configuration option, like in the example above.
|
setting the configuration option, like in the example above.
|
||||||
|
|
||||||
|
.. |reclass| replace:: **reclass**
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# This file cannot be called reclass.py, because then the module import would
|
# This file cannot be called reclass.py, because then the module import would
|
||||||
# not work. Thanks to the __virtual__ function, however, the plugin still
|
# not work. Thanks to the __virtual__ function, however, the plugin still
|
||||||
# responds to the name 'reclass'.
|
# responds to the name 'reclass'.
|
||||||
@ -73,6 +78,10 @@ def __virtual__(retry=False):
|
|||||||
from salt.exceptions import SaltInvocationError
|
from salt.exceptions import SaltInvocationError
|
||||||
|
|
||||||
def ext_pillar(minion_id, pillar, **kwargs):
|
def ext_pillar(minion_id, pillar, **kwargs):
|
||||||
|
'''
|
||||||
|
Obtain the Pillar data from **reclass** for the given ``minion_id``.
|
||||||
|
'''
|
||||||
|
|
||||||
# If reclass is installed, __virtual__ put it onto the search path, so we
|
# If reclass is installed, __virtual__ put it onto the search path, so we
|
||||||
# don't need to protect against ImportError:
|
# don't need to protect against ImportError:
|
||||||
from reclass.adapters.salt import ext_pillar as reclass_ext_pillar
|
from reclass.adapters.salt import ext_pillar as reclass_ext_pillar
|
||||||
|
@ -1,25 +1,27 @@
|
|||||||
'''
|
'''
|
||||||
master_tops adapter for reclass.
|
This ``master_tops`` plugin provides access to the |reclass| database, such
|
||||||
|
that state information (top data) are retrieved from |reclass|.
|
||||||
|
|
||||||
Please refer to the file ``README.Salt`` in the reclass source for more
|
You can find more information about |reclass| at
|
||||||
information on how to use these. In a nutshell, you'll just add the plugin to
|
http://reclass.pantsfullofunix.net.
|
||||||
the master_tops hash in the master config and tell reclass by way of a few
|
|
||||||
options how and where to find the inventory:
|
To use the plugin, add it to the ``master_tops`` list in the Salt master config
|
||||||
|
and tell |reclass| by way of a few options how and where to find the
|
||||||
|
inventory:
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
master_tops:
|
master_tops:
|
||||||
reclass:
|
reclass:
|
||||||
storage_type: yaml_fs
|
storage_type: yaml_fs
|
||||||
base_inventory_uri: /srv/salt
|
base_inventory_uri: /srv/salt
|
||||||
|
|
||||||
This would cause reclass to read the inventory from YAML files in
|
This would cause |reclass| to read the inventory from YAML files in
|
||||||
``/srv/salt/nodes`` and ``/srv/salt/classes``.
|
``/srv/salt/nodes`` and ``/srv/salt/classes``.
|
||||||
|
|
||||||
More information about reclass: http://github.com/madduck/reclass
|
If you are also using |reclass| as ``ext_pillar`` plugin, and you want to
|
||||||
|
avoid having to specify the same information for both, use YAML anchors (take
|
||||||
If you are also using ext_pillar and you want to avoid having to specify the
|
note of the differing data types for ``ext_pillar`` and ``master_tops``):
|
||||||
same information for both, use YAML anchors:
|
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
@ -37,7 +39,10 @@ same information for both, use YAML anchors:
|
|||||||
If you want to run reclass from source, rather than installing it, you can
|
If you want to run reclass from source, rather than installing it, you can
|
||||||
either let the master know via the ``PYTHONPATH`` environment variable, or by
|
either let the master know via the ``PYTHONPATH`` environment variable, or by
|
||||||
setting the configuration option, like in the example above.
|
setting the configuration option, like in the example above.
|
||||||
|
|
||||||
|
.. |reclass| replace:: **reclass**
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# This file cannot be called reclass.py, because then the module import would
|
# This file cannot be called reclass.py, because then the module import would
|
||||||
# not work. Thanks to the __virtual__ function, however, the plugin still
|
# not work. Thanks to the __virtual__ function, however, the plugin still
|
||||||
# responds to the name 'reclass'.
|
# responds to the name 'reclass'.
|
||||||
@ -64,6 +69,10 @@ def __virtual__(retry=False):
|
|||||||
from salt.exceptions import SaltInvocationError
|
from salt.exceptions import SaltInvocationError
|
||||||
|
|
||||||
def top(**kwargs):
|
def top(**kwargs):
|
||||||
|
'''
|
||||||
|
Query |reclass| for the top data (states of the minions).
|
||||||
|
'''
|
||||||
|
|
||||||
# If reclass is installed, __virtual__ put it onto the search path, so we
|
# If reclass is installed, __virtual__ put it onto the search path, so we
|
||||||
# don't need to protect against ImportError:
|
# don't need to protect against ImportError:
|
||||||
from reclass.adapters.salt import top as reclass_top
|
from reclass.adapters.salt import top as reclass_top
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
'''
|
'''
|
||||||
Common utility functions for the reclass adapters
|
Common utility functions for the reclass adapters
|
||||||
|
http://reclass.pantsfullofunix.net
|
||||||
'''
|
'''
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
Loading…
Reference in New Issue
Block a user