-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkflow.yml
49 lines (49 loc) · 997 Bytes
/
workflow.yml
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
name: Send queue congestion experiment
vars:
host: http://localhost
jobs:
- name: Normal sender
repeat:
count: 60
interval: 10
steps:
- uses: bulkmail
with:
addr: localhost:5871
from: [email protected]
my-hostname: msa1-local
subject: 'Experiment: Case 1'
session: 10
message: 10
length: 800
- name: Bulk mails sender
repeat:
count: 60
interval: 10
steps:
- uses: bulkmail
with:
addr: localhost:5872
from: [email protected]
my-hostname: msa2-local
subject: 'Experiment: Case 2'
session: 1000
message: 1000
length: 800
- name: Throttled mail sender
repeat:
count: 60
interval: 10
steps:
- uses: bulkmail
with:
addr: localhost:5873
from: [email protected]
my-hostname: msa3-local
subject: 'Experiment: Case 3'
session: 10
message: 10
length: 800