Re: [CentOS-virt] Libvirt enhancement requests

2015-10-28 Thread Pasi Kärkkäinen
On Tue, Oct 27, 2015 at 05:19:16PM +, Nux! wrote:
> To clarify my own request:
> 
> RBD (for CEPH) support is available in the version bundled in RHEL 7.2 Beta, 
> so we'll have it in CentOS 7.2 (or whatever will be the identifying number).
> 
> The hooks seems just like a matter of creating files in the correct location.
> 
> ..So, all is good in the world once again.
>

Except the VirtSIG provides a different version/build of libvirt rpms, so we 
still need to enable RBD/Ceph support separately in VirtSIG provided version..


-- Pasi
 
> 
> Regards,
> Lucian
> 
> --
> Sent from the Delta quadrant using Borg technology!
> 
> Nux!
> www.nux.ro
> 
> - Original Message -
> > From: "Nux!" 
> > To: "Discussion about the virtualization on CentOS" 
> > Sent: Tuesday, 27 October, 2015 15:22:27
> > Subject: Re: [CentOS-virt] Libvirt enhancement requests
> 
> > So... how exactly do we proceed?
> > 
> > Anyone from the Virt SIG, please stand up?
> > 
> > --
> > Sent from the Delta quadrant using Borg technology!
> > 
> > Nux!
> > www.nux.ro
> > 
> > - Original Message -
> >> From: "Pasi Kärkkäinen" 
> >> To: "Discussion about the virtualization on CentOS" 
> >> 
> >> Sent: Sunday, 25 October, 2015 11:02:22
> >> Subject: Re: [CentOS-virt] Libvirt enhancement requests
> > 
> >> On Wed, Oct 21, 2015 at 05:44:20PM +0100, Nux! wrote:
> >>> Hi folks,
> >>>
> >> 
> >> Hi,
> >> 
> >>> I know you're rebuilding livbirt for the SIG. Would it be possible to 
> >>> enable RBD
> >>> support in it?
> >>>
> >> 
> >> Yes, we should definitely enable RBD / Ceph support in libvirt!
> >> 
> >> 
> >> 
> >>> I know quite a few cases (in the Cloudstack community) that switched to 
> >>> Ubuntu
> >>> particularly because CEPH support was missing.
> >>> The recommendation is to rebuild the rpms, but this is not a viable thing 
> >>> for
> >>> everyone. E.g.
> >>> http://blog.widodh.nl/2015/04/rebuilding-libvirt-under-centos-7-1-with-rbd-storage-pool-support/
> >>> 
> >>> Another thing that I noticed on the CentOS ml recently is an alleged lack 
> >>> of
> >>> hooks, https://www.libvirt.org/hooks.html
> >>> 
> >>> And last but not least, where could I find the libvirt (s)rpms that the 
> >>> SIG
> >>> produces?
> >>> 
> >>> Lucian
> >>> 
> >> 
> >> 
> >> -- Pasi
> >> 
> >> ___
> >> CentOS-virt mailing list
> >> CentOS-virt@centos.org
> > > https://lists.centos.org/mailman/listinfo/centos-virt
> ___
> CentOS-virt mailing list
> CentOS-virt@centos.org
> https://lists.centos.org/mailman/listinfo/centos-virt
___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


Re: [CentOS-virt] kvm-qemu-ev in testing

2015-10-28 Thread Lamar Owen

On 10/07/2015 07:07 PM, Karanbir Singh wrote:

hi,

kvm-qemu-ev from virt7-kvm-common-release is now signed and available on
buildlogs.centos.org for testing, the corresponding release file is
available in the centos/7/extras/ location on buildlogs as well.


Works here as a drop-in replacement for the 'regular' qemu-kvm packages 
running Windows 7 as a guest.  I am still looking forward to seeing what 
the '-ev' packages bring to the table over the regular qemu-kvm 
packages, but Win7 seems a bit more responsive under '-ev' than under 
the regular packages.


I actually rebuilt from the latest .src.rpm on cbs rather than using the 
pre-built ones, but am looking forward to following this.


In what repo will the '-ev' packages reside for update purposes?

___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


Re: [CentOS-virt] Xen Doc Day: Guide to setting up bridging on CentOS 6 / 7

2015-10-28 Thread Nathan March
If you'd like to extend that a little bit, here's example configs on how to do 
LACP and vlan tagging on c6:

host network-scripts # cat ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
USEERCTL=no
BOOTPROTO=none
IPV6INIT=no
MTU=1500
MASTER=bond0
SLAVE=yes

host network-scripts # cat ifcfg-eth1
DEVICE=eth1
ONBOOT=yes
USEERCTL=no
BOOTPROTO=none
IPV6INIT=no
MTU=1500
MASTER=bond0
SLAVE=yes

host network-scripts # cat ifcfg-bond0
DEVICE=bond0
ONBOOT=yes
USEERCTL=no
BOOTPROTO=none
IPV6INIT=no
BONDING_OPTS="miimon=100 mode=802.3ad"

host network-scripts # cat ifcfg-vlan###
DEVICE=vlan###
ONBOOT=yes
USEERCTL=no
BOOTPROTO=none
IPV6INIT=no
PHYSDEV=bond0
VLAN=yes
VLAN_NAME_TYPE=VLAN_PLUS_VID_NO_PAD
IPADDR=10.x.x.x
NETMASK=255.255.255.0
GATEWAY=10.x.x.x
DOMAIN="example.com"
DNS1=x.x.x.x
DNS2=x.x.x.x
DNS3=x.x.x.x

I use my own bridging control scripts, but this should extend your existing doc 
nicely just by using BRIDGE=xenbr0 in the ifcfg-vlan### file.

Also there's a small error in your c6 doc, you specify ifcfg-$dev but $dev 
never gets set anywhere.

- Nathan


> -Original Message-
> From: centos-virt-boun...@centos.org [mailto:centos-virt-
> boun...@centos.org] On Behalf Of George Dunlap
> Sent: Wednesday, October 28, 2015 10:02 AM
> To: Discussion about the virtualization on CentOS 
> Subject: [CentOS-virt] Xen Doc Day: Guide to setting up bridging on CentOS 6
> / 7
> 
> In honor of Xen Doc Day, I've put up some basic HOWTOs for setting up
> bridging on CentOS 6 and 7.  I'm far from an expert, so I'd appreciate any
> feedback.
> 
> The howtos can be found here:
> 
> https://wiki.centos.org/HowTos/Xen/Xen4QuickStart/Xen4Networking6
> 
> https://wiki.centos.org/HowTos/Xen/Xen4QuickStart/Xen4Networking7
> 
>  -George
> ___
> CentOS-virt mailing list
> CentOS-virt@centos.org
> https://lists.centos.org/mailman/listinfo/centos-virtv

___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


Re: [CentOS-virt] Xen Doc Day: Guide to setting up bridging on CentOS 6 / 7

2015-10-28 Thread George Dunlap
On Wed, Oct 28, 2015 at 5:14 PM, Nathan March  wrote:
> If you'd like to extend that a little bit, here's example configs on how to 
> do LACP and vlan tagging on c6:

Hey Nathan,

Thanks for the feedback.  I meant the HOWTOs to be for a super-basic
setup. I presume someone who wants vlans and what-not can read the
full RHEL 6 / 7 documentation (which I linked to from the parent
document, https://wiki.centos.org/HowTos/Xen/Xen4QuickStart.

If you want to add a new wiki page with your suggested setup, and link
to it from the main page, that would be good as well.

> Also there's a small error in your c6 doc, you specify ifcfg-$dev but $dev 
> never gets set anywhere.

Ah, thanks -- missed that one when copy-and-pasting from my testing scripts. :-)

Peace,
 -George
___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


Re: [CentOS-virt] kvm-qemu-ev in testing

2015-10-28 Thread Lamar Owen

On 10/28/2015 06:00 PM, Sandro Bonazzola wrote:



On Wed, Oct 28, 2015 at 5:29 PM, Lamar Owen > wrote:



In what repo will the '-ev' packages reside for update purposes?



it will be in 
http://mirror.centos.org/centos/7/virt/x86_64/kvm-common/ enabled by 
http://mirror.centos.org/centos/7/extras/x86_64/Packages/centos-release-qemu-ev-1.0-1.el7.noarch.rpm 




Thanks, Sandro.

___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


Re: [CentOS-virt] kvm-qemu-ev in testing

2015-10-28 Thread Eliezer Croitoru
May I ask what is the difference between the kvm-qemu package from Base 
CentOS 7 repo?


Thanks,
Eliezer

On 08/10/2015 02:07, Karanbir Singh wrote:

hi,

kvm-qemu-ev from virt7-kvm-common-release is now signed and available on
buildlogs.centos.org for testing, the corresponding release file is
available in the centos/7/extras/ location on buildlogs as well.

Once we have some testing, we can push and announce via
mirror.centos.org for wider adoption.

Regards,



___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


Re: [CentOS-virt] kvm-qemu-ev in testing

2015-10-28 Thread Nux!
Eliezer,

>From what I could find on the internet, it's this:
Live Snapshots
Live Storage Migration
Live Snapshot Merge
Block I/O Throttling
CEPH Enablement
OpenvSwitch

>From 
>https://rhsummit.files.wordpress.com/2014/04/sarathy_h_0945_red_hat_enterprise_virtualization_hypervisor.pdf

I'd love an answer with proper/current info as well. :-)

Lucian

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

- Original Message -
> From: "Eliezer Croitoru" 
> To: centos-virt@centos.org
> Sent: Wednesday, 28 October, 2015 22:17:53
> Subject: Re: [CentOS-virt] kvm-qemu-ev in testing

> May I ask what is the difference between the kvm-qemu package from Base
> CentOS 7 repo?
> 
> Thanks,
> Eliezer
> 
> On 08/10/2015 02:07, Karanbir Singh wrote:
>> hi,
>>
>> kvm-qemu-ev from virt7-kvm-common-release is now signed and available on
>> buildlogs.centos.org for testing, the corresponding release file is
>> available in the centos/7/extras/ location on buildlogs as well.
>>
>> Once we have some testing, we can push and announce via
>> mirror.centos.org for wider adoption.
>>
>> Regards,
>>
> 
> ___
> CentOS-virt mailing list
> CentOS-virt@centos.org
> https://lists.centos.org/mailman/listinfo/centos-virt
___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt


Re: [CentOS-virt] kvm-qemu-ev in testing

2015-10-28 Thread Sandro Bonazzola
On Wed, Oct 28, 2015 at 5:29 PM, Lamar Owen  wrote:

> On 10/07/2015 07:07 PM, Karanbir Singh wrote:
>
>> hi,
>>
>> kvm-qemu-ev from virt7-kvm-common-release is now signed and available on
>> buildlogs.centos.org for testing, the corresponding release file is
>> available in the centos/7/extras/ location on buildlogs as well.
>>
>>
>> Works here as a drop-in replacement for the 'regular' qemu-kvm packages
> running Windows 7 as a guest.  I am still looking forward to seeing what
> the '-ev' packages bring to the table over the regular qemu-kvm packages,
> but Win7 seems a bit more responsive under '-ev' than under the regular
> packages.
>
> I actually rebuilt from the latest .src.rpm on cbs rather than using the
> pre-built ones, but am looking forward to following this.
>
> In what repo will the '-ev' packages reside for update purposes?



it will be in http://mirror.centos.org/centos/7/virt/x86_64/kvm-common/
enabled by
http://mirror.centos.org/centos/7/extras/x86_64/Packages/centos-release-qemu-ev-1.0-1.el7.noarch.rpm




>
>
> ___
> CentOS-virt mailing list
> CentOS-virt@centos.org
> https://lists.centos.org/mailman/listinfo/centos-virt
>



-- 
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
___
CentOS-virt mailing list
CentOS-virt@centos.org
https://lists.centos.org/mailman/listinfo/centos-virt