Show Table of Contents
3.7. Creating an NFS Storage Domain
This Ruby example adds an NFS storage domain.
# Get the reference to the root of the services tree:
system_service = connection.system_service
# Get the reference to the storage domains service:
sds_service = connection.system_service.storage_domains_service
# Create a new NFS data storage domain:
sd = sds_service.add(
OvirtSDK4::StorageDomain.new(
name: 'mydata',
description: 'My data',
type: OvirtSDK4::StorageDomainType::DATA,
host: {
name: 'myhost'
},
storage: {
type: OvirtSDK4::StorageType::NFS,
address: 'server0.example.com',
path: '/nfs/ovirt/40/mydata'
}
)
)
# Wait until the storage domain is unattached:
sd_service = sds_service.storage_domain_service(sd.id)
loop do
sleep(5)
sd = sd_service.get
break if sd.status == OvirtSDK4::StorageDomainStatus::UNATTACHED
endFor more information, see http://www.rubydoc.info/gems/ovirt-engine-sdk/OvirtSDK4/StorageDomainsService:add.

Where did the comment section go?
Red Hat's documentation publication system recently went through an upgrade to enable speedier, more mobile-friendly content. We decided to re-evaluate our commenting platform to ensure that it meets your expectations and serves as an optimal feedback mechanism. During this redesign, we invite your input on providing feedback on Red Hat documentation via the discussion platform.