Python API¶
Cumin Python API autodoc.
Automation and orchestration framework written in Python.
- exception cumin.CuminError[source]¶
Bases:
Exception
Base Exception class for all Cumin's custom Exceptions.
- cumin.trace(self, msg, *args, **kwargs)[source]¶
Additional logging level for development debugging.
- Parameters:
according to
logging.Logger
interface for log levels.
- class cumin.Config(config='/etc/cumin/config.yaml')[source]¶
Bases:
dict
Singleton-like dictionary class to load the configuration from a given path only once.
Load the given configuration if not already loaded and return it.
Called by Python's data model for each new instantiation of the class.
- Parameters:
config (str, optional) -- path to the configuration file to load.
- Returns:
the configuration dictionary.
- Return type:
Examples
>>> import cumin >>> config = cumin.Config()
- cumin.parse_config(config_file)[source]¶
Parse the YAML configuration file.
- Parameters:
config_file (str) -- the path of the configuration file to load.
- Returns:
the configuration dictionary.
- Return type:
- Raises:
CuminError -- if unable to read or parse the configuration.
- cumin.nodeset(nodes=None)[source]¶
Instantiate a ClusterShell NodeSet with the resolver defaulting to
RESOLVER_NOGROUP
.This allow to avoid any conflict with Cumin grammars.
- Returns:
the instantiated NodeSet.
- Return type:
- cumin.nodeset_fromlist(nodelist)[source]¶
Instantiate a ClusterShell NodeSet from a list with the resolver defaulting to
RESOLVER_NOGROUP
.This allow to avoid any conflict with Cumin grammars.
- Returns:
the instantiated NodeSet.
- Return type:
- cumin.ensure_kerberos_ticket(config: Config) None [source]¶
Ensure that there is a valid Kerberos ticket for the current user, according to the given configuration.
- Parameters:
config (cumin.Config) -- the Cumin's configuration dictionary.
Subpackages and Submodules
- Backends
InvalidQueryError
BaseQuery
BaseQueryAggregator
- Direct
- KnownHosts
- OpenStack
- PuppetDB
CATEGORIES
OPERATORS
ParsedString
grammar()
PuppetDBQuery
PuppetDBQuery.base_url_template
PuppetDBQuery.endpoints
PuppetDBQuery.category_prefixes
PuppetDBQuery.grammar
PuppetDBQuery.endpoint
PuppetDBQuery._open_subgroup()
PuppetDBQuery._close_subgroup()
PuppetDBQuery._get_grouped_tokens()
PuppetDBQuery._build()
PuppetDBQuery._execute()
PuppetDBQuery._add_category()
PuppetDBQuery._add_hosts()
PuppetDBQuery._parse_token()
PuppetDBQuery._get_resource_query()
PuppetDBQuery._get_special_resource_query()
PuppetDBQuery._get_query_string()
PuppetDBQuery._add_bool()
PuppetDBQuery._api_call()
GRAMMAR_PREFIX
query_class
- Color
- Grammar
- Query
- Transport
- Transports
Command
State
State.current
State.is_pending
State.is_scheduled
State.is_running
State.is_success
State.is_failed
State.is_timeout
State.valid_states
State.pending
State.scheduled
State.running
State.success
State.failed
State.timeout
State.states_representation
State.allowed_state_transitions
State.__getattr__()
State.__repr__()
State.__str__()
State.update()
State._cmp()
WorkerError
StateTransitionError
InvalidStateError
Target
BaseWorker
validate_list()
validate_positive_integer()
validate_positive_float()
raise_error()
BaseExecutionProgress
TqdmProgressBars
NoProgress
- ClusterShell