sandeeplocharla commented on code in PR #13053:
URL: https://github.com/apache/cloudstack/pull/13053#discussion_r3497553738
##########
ui/src/views/infra/zone/ZoneWizardLaunchZone.vue:
##########
@@ -1604,6 +1604,18 @@ export default {
params.url = this.powerflexURL(this.prefillContent.powerflexGateway,
this.prefillContent.powerflexGatewayUsername,
this.prefillContent.powerflexGatewayPassword,
this.prefillContent.powerflexStoragePool)
}
+ if (this.prefillContent.provider === 'NetApp ONTAP') {
+ params['details[0].storageIP'] = this.prefillContent.ontapIP
+ params['details[0].username'] = this.prefillContent.ontapUsername
+ params['details[0].password'] = btoa(this.prefillContent.ontapPassword)
+ params['details[0].svmName'] = this.prefillContent.ontapSvmName
+ params['details[0].protocol'] =
this.prefillContent.primaryStorageProtocol
+ params.managed = true
+ params.url = this.ontapURL(this.prefillContent.ontapIP)
+ if (this.prefillContent.capacityBytes &&
this.prefillContent.capacityBytes.length > 0) {
+ params.capacityBytes =
this.prefillContent.capacityBytes.split(',').join('')
+ }
+ }
Review Comment:
For now, we are planning on documenting the unsupported characters in the
password.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]