from mistral_lib import actions class RunnerAction(actions.Action): def __init__(self, param): # store the incoming params self.param = param def run(self, context): # Actions can be returned in a manner of ways. The simplest is # return {'status': 0} # or using a Result object. The Result has an optional parameter data # that can be used to transfer information return actions.Result() # Failed executions can also be returned using a workflow Result object # that contains an non empty error parameter such as: # return actions.Result(error="error text")
setup.cfg
)[entry_points] mistral.actions = example.runner = my.mistral_plugins.somefile:RunnerAction
$ mistral-db-manage --config-file <path-to-config> populate
example.runner
my_workflow: tasks: my_action_task: action: example.runner input: param: avalue_to_pass_in
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.