Skip to content

Commit

Permalink
Update YAML files with string values in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaguiar committed Dec 31, 2023
1 parent 1b4054a commit 4c91a1f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion formats/fromRes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ help:
mandatory: false
- name : wait
desc : If browser=true the time, in ms, to wait for the browser to open
example : 5000
example : "5000"
mandatory: false

todo:
Expand Down
18 changes: 9 additions & 9 deletions oaf/parseCron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
help:
text : Test the provided cron expression a provides a list of dates of occurrence.
expects:
- name : cron
desc : The cron expression to evaluate
example: "*/5 * * * *"
- name : cron
desc : The cron expression to evaluate
example : "*/5 * * * *"
mandatory: false
- name : next
desc : How many occurrences in the future to provide (default to 5)
example: 5
- name : next
desc : How many occurrences in the future to provide (default to 5)
example : "5"
mandatory: false
- name : prev
desc : How many occurrences in the past to provide (default to 0)
example: 0
- name : prev
desc : How many occurrences in the past to provide (default to 0)
example : "0"
mandatory: false

todo:
Expand Down
6 changes: 3 additions & 3 deletions unix/hvscs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ help:
- name : name
desc : When creating or deleting the hVSCs name
example : test
mandatory: false
mandatory: false
- name : image
desc : The hVSCs image to use (defaults to nmaguiar/hvscs)
example : false
example : "false"
mandatory: false
- name : mac
desc : If mac=true the host is a Mac OS server
example : true
example : "true"
mandatory: false
- name : volume
desc : If defined a container volume to mount as /workspace on op=create
Expand Down
4 changes: 2 additions & 2 deletions unix/parseCPUStats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ help:
desc : Command to obtain the result of /proc/stat (defaults to "cat /proc/stat")
example : cat /proc/stat
mandatory: false
- name : interval
- name : interval
desc : Interval of sampling of /proc/stat in ms
example : 1000
example : "1000"
mandatory: false
- name : dontShowFirst
desc : Boolean to indicate that the first line should not be shown until a previous sample if collected to properly calculate the difference
Expand Down
4 changes: 2 additions & 2 deletions unix/parseIOStats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ help:
desc : Command to obtain the result of /proc/stat (defaults to "cat /proc/diskstats")
example : cat /proc/diskstats
mandatory: false
- name : interval
- name : interval
desc : Interval of sampling of /proc/diskstats in ms
example : 1000
example : "1000"
mandatory: false
- name : dontShowFirst
desc : Boolean to indicate that the first line should not be shown until a previous sample if collected to properly calculate the difference
Expand Down

0 comments on commit 4c91a1f

Please sign in to comment.