-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.schema.yaml
67 lines (67 loc) · 2.19 KB
/
config.schema.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
brcd_sd_proxy:
description: "Configure vTMs via a Brocade Services Director? Set to False if you want to connect directly"
type: boolean
default: true
required: true
brcd_sd_host:
description: "Service Director API EndPoint (eg https://sd1:8100/). Required if brcd_sd_proxy is true"
type: string
default: "{{system.brcd_sd_host}}"
required: false
brcd_sd_user:
description: "Service Director REST User. Required if brcd_sd_proxy is true"
default: "{{system.brcd_sd_user}}"
type: string
required: false
brcd_sd_pass:
description: "Service Director REST Password. Required if brcd_sd_proxy is true"
type: string
default: "{{system.brcd_sd_pass}}"
secret: true
required: false
brcd_vtm_host:
description: "vTM API EndPoint (eg https://vtm01:9070/). Required if brcd_sd_proxy is false"
type: string
default: "{{user.brcd_vtm_host}}"
required: false
brcd_vtm_user:
description: "vTM REST User. Required if brcd_sd_proxy is false"
default: "{{user.brcd_vtm_user}}"
type: string
required: false
brcd_vtm_pass:
description: "vTM REST Password. Required if brcd_sd_proxy is false"
type: string
default: "{{user.brcd_vtm_pass}}"
secret: true
required: false
brcd_bw_manage:
description: "Brocade Bandwidth Sensor: Set to 'all' or a list of vTMs which should have their bandwdith automatically assigned."
type: string
required: false
brcd_bw_track:
description: "Brocade Bandwidth Sensor: How many sensor measurements to track?"
default: "10"
type: string
required: false
brcd_bw_minimum:
description: "Brocade Bandwidth Sensor: The minimum amount of bandwidth to assign to a vTM"
default: "10"
type: string
required: false
brcd_bw_headroom:
description: "Brocade Bandwidth Sensor: How much bandwidth headroom should a vTM maintain?"
default: "10"
type: string
required: false
brcd_bw_roundup:
description: "Brocade Bandwidth Sensor: Roundup bw to nearest n Mb"
default: "10"
type: string
required: false
brcd_bw_warn:
description: "Brocade Bandwidth Sensor: Warning threshold for non-managed vTMs"
default: "10"
type: string
required: false