mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-3461: zone wizard - add cluster step - when hypervisor is VMware, vCenter Username and vCenter Password are required (for firing addVmwareDc API).
This commit is contained in:
parent
841e761904
commit
0392b571f9
|
|
@ -883,18 +883,20 @@
|
|||
|
||||
vCenterHost: {
|
||||
label: 'label.vcenter.host',
|
||||
validation: { required: true }
|
||||
validation: { required: true } //required, for firing addVmwareDc API
|
||||
},
|
||||
vCenterUsername: {
|
||||
label: 'label.vcenter.username'
|
||||
label: 'label.vcenter.username',
|
||||
validation: { required: true } //required, for firing addVmwareDc API
|
||||
},
|
||||
vCenterPassword: {
|
||||
label: 'label.vcenter.password',
|
||||
isPassword: true
|
||||
isPassword: true,
|
||||
validation: { required: true } //required, for firing addVmwareDc API
|
||||
},
|
||||
vCenterDatacenter: {
|
||||
label: 'label.vcenter.datacenter',
|
||||
validation: { required: true }
|
||||
validation: { required: true } //required, for firing addVmwareDc API
|
||||
},
|
||||
|
||||
overridepublictraffic:{
|
||||
|
|
|
|||
Loading…
Reference in New Issue