fuel-plugins/examples/fuel_plugin_example_v1/tasks.yaml

15 lines
313 B
YAML

# This tasks will be applied on controller nodes
- role: ['controller']
stage: post_deployment
type: shell
parameters:
cmd: bash deploy.sh
timeout: 42
# Task is applied for all roles
- role: '*'
stage: pre_deployment
type: shell
parameters:
cmd: echo all > /tmp/plugin.all
timeout: 42