Adding timer resource and usage examples

This commit is contained in:
Sharad Ganapathy
2016-07-16 19:37:34 -07:00
committed by James Shubin
parent 402a6379b9
commit a1ed03478b
4 changed files with 222 additions and 5 deletions

25
examples/timer1.yaml Normal file
View File

@@ -0,0 +1,25 @@
---
graph: mygraph
comment: timer example
resources:
timer:
- name: timer1
interval: 30
exec:
- name: exec1
cmd: echo hello world
timeout: 0
watchcmd: ''
watchshell: ''
ifcmd: ''
ifshell: ''
pollint: 0
state: present
edges:
- name: e1
from:
kind: timer
name: timer1
to:
kind: exec
name: exec1

43
examples/timer2.yaml Normal file
View File

@@ -0,0 +1,43 @@
---
graph: mygraph
comment: example of multiple timers
resources:
timer:
- name: timer1
interval: 30
- name: timer2
interval: 60
exec:
- name: exec1
cmd: echo hello world 30
timeout: 0
watchcmd: ''
watchshell: ''
ifcmd: ''
ifshell: ''
pollint: 0
state: present
- name: exec2
cmd: echo hello world 60
timeout: 0
watchcmd: ''
watchshell: ''
ifcmd: ''
ifshell: ''
pollint: 0
state: present
edges:
- name: e1
from:
kind: timer
name: timer1
to:
kind: exec
name: exec1
- name: e2
from:
kind: timer
name: timer2
to:
kind: exec
name: exec2