We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 094de8f commit 13aab99Copy full SHA for 13aab99
ui/src/views/infra/AddPrimaryStorage.vue
@@ -793,6 +793,12 @@ export default {
793
gateway + '/' + encodeURIComponent(pool)
794
return url
795
},
796
+
797
+ ontapURL (ontapIp) {
798
+ var url = 'https://' + ontapIp
799
+ return url
800
+ },
801
802
updateProviderAndProtocol (value) {
803
if (value === 'PowerFlex') {
804
this.protocols = ['custom']
@@ -959,6 +965,10 @@ export default {
959
965
values.powerflexGatewayPassword, values.powerflexStoragePool)
960
966
}
961
967
968
+ if (values.provider === 'ONTAP') {
969
+ params.url = this.ontapURL(values.ontapIP)
970
+ }
971
962
972
if (this.selectedTags.length > 0) {
963
973
params.tags = this.selectedTags.join()
964
974
0 commit comments