0aa73edbc1
First attempt at creating the mistral install guide Change-Id: I30142b46e36270b573b9ec10201907811040d94b Signed-off-by: visnyei <andrea.visnyei@nokia.com>
940 B
940 B
Basic verification
$ mistral run-action std.noop
Verify operation of the Workflow service
Note
Perform these commands on the controller node.
Create a workflow file:
$ cat >/tmp/test.wf.yaml <<EOL --- version: '2.0' test_wf: tasks: echo_task: action: std.echo output="Hello" EOL
Create a workflow from the workflow file:
$ mistral workflow-create /tmp/test.wf.yaml
Create an execution based on the workflow:
$ mistral execution-create test_wf
Run the execution until its returning state is 'SUCCESS':
$ mistral execution-list
After performing the above steps, the Mistral service is ready for use.