-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathreference_playbook.yaml
53 lines (44 loc) · 1.45 KB
/
reference_playbook.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
# Playbook owned by group inception
group: inception
# This playbook is clearly awesome:
name: Simple playbook
# This playbook executes **two** sequences of steps for this
# release:
execution:
################################################################
# Sequence 1
################################################################
# Including a description is optional. This must be a string.
- description: frobnicate these lil guys
hosts:
- foo.dev.example.com
- bar.ops.example.com
steps:
# Some steps don't require parameters:
- bigip:OutOfRotation
# Whereas, some require parameters:
- misc:Echo:
input: "This is a test message"
# And some times you just want to tell the world what you're doing
- frob:Nicate:
things: "all the things"
notify:
started:
irc: [ "PHB", "#myteam" ]
email: [ "[email protected]", "[email protected]" ]
################################################################
# Sequence 2
################################################################
- description: then frobnicate the other half
hosts:
- dev.foo.example.com
- ops.bar.example.com
steps:
- bigip:OutOfRotation
# Some may even accept lists as the value of their parameters
- misc:ListFrob:
frob_list:
- item1
- item2
- item3