Comment 1 for bug 1983988

Revision history for this message
Narinder Gupta (narindergupta) wrote :

diff --git a/config.yaml b/config.yaml
index d34d87b..9cf81c8 100644
--- a/config.yaml
+++ b/config.yaml
+ transport-type:
+ type: string
+ description: |
+ Transport protocol for communicating with the storage system or proxy
+ server. Valid options include http and https.
+ default: http
+ netapp-server-port:
+ type: string
+ description: |
+ The TCP port to use for communication with the storage system or proxy
+ server. If not specified, ONTAP drivers will use 80 for HTTP and 443 for HTTPS.
+ default: ''

diff --git a/templates/queens/manila.conf b/templates/queens/manila.conf
index 0475d67..2438051 100644
--- a/templates/queens/manila.conf
+++ b/templates/queens/manila.conf

 netapp_storage_family = ontap_cluster
 netapp_server_hostname = {{ options.management_address }}
 netapp_login = {{ options.admin_name }}
 netapp_password = {{ options.admin_password }}
+netapp_transport_type = {{ options.transport_type }}
+netapp_server_port = {{ options.netapp_server_port }}