-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.yml
179 lines (147 loc) · 3.39 KB
/
form.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
ha_cluster:
$name: "Cluster configuration"
$type: group
$scope: group
transport_method:
$name: "Transport"
$type: select
$values:
- Multicast
$default: Multicast
name:
$name: "Cluster Name"
$type: text
$help: "Name used by the cluster."
$default: "hacluster"
crypto_cipher:
$name: "crypto_cipher"
$type: select
$help: "Cipher used to secure messages."
$values:
- none
- 3des
- aes128
- aes192
- aes256
$default: aes256
crypto_hash:
$name: "crypt_hash"
$type: select
$help: "Hash algorithm to use to check message integrity."
$visibleIf: ha_cluster$crypto_cipher != none
$values:
- none
- md5
- sha1
- sha256
- sha384
- sha512
$default: sha256
ha_multicast:
$name: "Multicast configuration"
$type: group
$scope: group
$visibleIf: ha_cluster$transport_method == Multicast
bind_interface:
$name: "Bind Network Address"
$type: text
$placeholder: 10.10.10.0
interface:
$name: "Multicast Address"
$type: text
$default: 239.120.207.168
port:
$name: "Multicast Port"
$type: text
$default: 5405
ha_fencing:
$name: "Cluster fencing"
$type: group
$scope: group
stonith_enabled:
$name: "stonith-enabled"
$type: boolean
$default: true
type:
$name: "Stonith method"
$type: select
$visibleIf: ha_fencing$stonith_enabled == true
$values:
- IPMI
- SBD
$default: SBD
sbd_storage:
$name: "SBD Device"
$type: group
$scope: group
$visibleIf: ha_fencing$type == SBD
ip:
$name: "Storage Hostname/IP"
$type: text
$placeholder: "10.10.10.210"
port:
$name: "Storage Port"
$type: text
$default: "3260"
iqn_name:
$name: "IQN name"
$type: text
$default: "iqn.2017-09.com.susemgr:5cc34e87-7735-421b-9255-7fcc3d508a25"
block_device:
$name: "Block device on disk"
$type: text
$default: "/dev/disk/by-id/scsi-36001405ca239299311b44648c42fef54"
ha_management:
$name: "Cluster management"
$type: group
$scope: group
adm_ip:
$name: "Administration IP"
$type: text
$placeholder: "10.10.10.200"
$help: "IP Address used for cluster management."
no_quorum_policy:
$name: "no-quorum-policy"
$type: select
$visibleIf: ha_fencing$stonith_enabled == true
$values:
- ignore
- freeze
- stop
- suicide
$default: ignore
$help: "What action should be done by cluster when quorum is lost."
migration_threshold:
$name: "migration-threshold"
$type: number
$default: 3
$help: "How many times retry restart resource on same node before give up."
failure_timeout:
$name: "failure-timeout"
$type: number
$default: 300
$help: "After a node is considered failed, wait this amount of seconds before try a new start on the node."
ha_user:
$name: "Cluster user"
$type: group
$scope: group
password:
$name: "hacluster user password"
$type: password
$default: "linux"
nfs:
$name: "NFS Configuration"
$type: group
$scope: group
server:
$name: "Server Hostname/IP"
$type: text
$placeholder: "10.10.10.210"
source_directory:
$name: "Remote NFS directory"
$type: text
$placeholder: "/export/vms"
mount_directory:
$name: "Local mount directory"
$type: text
$placeholder: "/export/vms"