3.11. ストレージドメインのアクティブ化
ストレージドメインを Red Hat Virtualization に追加してデータセンターにアタッチしたら、使用できるようになる前にアクティブ化する必要があります。
例3.9 ストレージドメインのアクティブ化
この例では、データセンター (Default) にアタッチされている NFS ストレージドメイン (mydata) をアクティブにします。activate アクションは、ストレージドメインの activate メソッドによって容易になります。
V4
import ovirtsdk4 as sdk
connection = sdk.Connection
url='https://engine.example.com/ovirt-engine/api',
username='admin@internal',
password='password',
ca_file='ca.pem',
)
# Locate the service that manages the storage domains and use it to
# search for the storage domain:
sds_service = connection.system_service().storage_domains_service()
sd = sds_service.list(search='name=mydata')[0]
# Locate the service that manages the data centers and use it to
# search for the data center:
dcs_service = connection.system_service().data_centers_service()
dc = dcs_service.list(search='name=Default')[0]
# Locate the service that manages the data center where we want to
# attach the storage domain:
dc_service = dcs_service.data_center_service(dc.id)
# Locate the service that manages the storage domains that are attached
# to the data centers:
attached_sds_service = dc_service.storage_domains_service()
# Activate storage domain:
attached_sd_service = attached_sds_service.storage_domain_service(sd.id)
attached_sd_service.activate()
# Wait until the storage domain is active:
while True:
time.sleep(5)
sd = attached_sd_service.get()
if sd.status == types.StorageDomainStatus.ACTIVE:
break
print("Attached data storage domain '%s' to data center '%s' (Status: %s)." %
(sd.name(), dc.name(), sd.status.state()))
# Close the connection to the server:
connection.close()
activate リクエストが成功すると、例は次のテキストを出力します。
Activated storage domain 'mydata' in data center 'Default' (Status: active).
Status: active は、ストレージドメインがアクティブ化されたことを示します。