Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 897920 Details for
Bug 1099856
[SCALE] VDSM is consuming a lot of CPU time even with no active VMs on 100 NFS storage domains
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
create_sd.py
create_sd.py (text/x-python), 1.09 KB, created by
Aharon Canan
on 2014-05-21 11:19:01 UTC
(
hide
)
Description:
create_sd.py
Filename:
MIME Type:
Creator:
Aharon Canan
Created:
2014-05-21 11:19:01 UTC
Size:
1.09 KB
patch
obsolete
>#!/usr/bin/python > > >from ovirtsdk.api import API >from ovirtsdk.xml import params > >for i in range(1, 101): > try: > api = API (url="https://10.35.161.44", > username="admin@internal", > password="qum5net", > insecure=True) > > dc = api.datacenters.get(name="Default") > h = api.hosts.get(name="10.35.102.54") > > s = params.Storage(address="10.35.160.108", path="/RHEV/%s" % i , type_="nfs") > sd_params = params.StorageDomain(name="data_%s" % i, data_center=dc, host=h, type_="data", storage_format="v3", storage=s) > > try: > sd = api.storagedomains.add(sd_params) > print "Storage Domain '%s' added (%s)." % (sd.get_name(), sd.get_id()) > dc.storagedomains.add(sd) > print "Storage Domain '%s' attached (%s)." % (sd.get_name(), dc.get_name()) > except Exception as ex: > print "Adding storage domain failed: %s" % ex > > api.disconnect() > > except Exception as ex: > print "Unexpected error: %s" % ex >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1099856
:
897917
|
897918
| 897920 |
898046
|
898047