Bug 1304924

Summary: [Docs][REST] ISCSI CHAP user name and password can be added per host via the REST API
Product: Red Hat Enterprise Virtualization Manager Reporter: Lucy Bopf <lbopf>
Component: DocumentationAssignee: Byron Gravenorst <bgraveno>
Status: CLOSED CURRENTRELEASE QA Contact: Tahlia Richardson <trichard>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 3.6.0CC: amureini, gklein, lsurette, rbalakri, tnisan, yeylon, ykaul, ylavi
Target Milestone: ovirt-3.6.3   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2016-03-16 14:11:08 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: Docs RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Bug Depends On: 1186812    
Bug Blocks:    

Description Lucy Bopf 2016-02-05 00:26:27 UTC
When an ISCSI storage domain is added via the Administration Portal, only a single user name and password can be specified for that domain. However, some setups require that each host in the cluster uses a separate user name and password. You can now add a user name and password per host using the 'storageconnectionextensions' parameter via the REST API. An example similar to the following must be added to the REST API Guide:


POST /api/hosts/0656f432-923a-11e0-ad20-5254004ac988/storageconnectionextensions/add HTTP/1.1
Accept: application/xml
Content-type: application/xml

<storageconnectionextension>
  <target>
    ISCSI address
  </target>
  <username>
    user
  </username>
  <password>
    pass
  </password>
</storageconnectionextension>

Comment 1 Lucy Bopf 2016-02-19 05:22:10 UTC
Assigning to Byron for review.