Re: [Openstack] Openstack SRIOV and PCI passthrough error while creating instance

2018-01-28 Thread Moshe Levi
Hi Navdeep, The errors you are pointing out shouldn't cause error while creating instance with SR-IOV/PCI passthrough. They are part of the SR-IOV nic capabilities feature which is not completed yet. Libvirt "virsh nodedev-list" command will show you the list of nic and this method [1] will lo

[Openstack] Openstack SRIOV and PCI passthrough error while creating instance

2018-01-28 Thread Navdeep Uniyal
Dear All, I am getting an error while creating SRIOV enabled instances following the guide from Openstack pike https://docs.openstack.org/neutron/pike/admin/config-sriov.html I want to start an instance on openstack pike with SRIOV enabled NICs. However, I am getting a Libvirt error regard

[Openstack] Fwd: Re: [openstack] [swift] Erasure Coding - No reconstruction to other nodes/disks on disk failure

2018-01-28 Thread Hannes Fuchs
Seems to be that my university mail server bounces replies from the ML. So I have to change my mail settings. Maybe the information's are helpful for anyone who runs into the same question. Cheers, Hannes Weitergeleitete Nachricht Betreff: Re: [Openstack] [openstack] [swift]

[Openstack] [swift] Erasure Coding - "Unknown Error" on other ec_types than liberasurecode_rs_vand

2018-01-28 Thread Hannes Fuchs
Hello all, currently I try the provided ec_types of EC in swift. But the only one which works is "liberasurecode_rs_vand". On every other one I get the following error on startup (swift/swift-proxy): --- ERROR: Invalid Storage Policy Configuration in /etc/swift/swift.conf (Error creating EC polic

[Openstack] Fwd: how to allocate floating IP with Python API?

2018-01-28 Thread Riccardo Murri
Hello, I am trying to figure out how floating IPs should be allocated with the Python APIs. Code like the following used to work:: # `self.nova_client` is a `novaclient.client.Client` instance free_ips = [ip for ip in self.nova_client.floating_ips.list() if not ip.fixed_ip]