Misc updates, inclusion of libvirt and qemu
This commit is contained in:
parent
dcd50354c3
commit
1c4f5794a0
31
snap/bin/libvirt-wrapper
Executable file
31
snap/bin/libvirt-wrapper
Executable file
@ -0,0 +1,31 @@
|
||||
#!/bin/bash
|
||||
# This script creates a writeable /etc/libvirt under
|
||||
# SNAP_COMMON as libvirt requires write access to its
|
||||
# /etc/libvirt directory.
|
||||
#
|
||||
# Local configuration can be done by removing the
|
||||
# symlink and replacing with a file instead - subsequent
|
||||
# refreshes of the snap will preserve the file.
|
||||
#
|
||||
# TODO: move to configure hook
|
||||
|
||||
set -e
|
||||
|
||||
export TARGET_PATH=$SNAP/etc/libvirt
|
||||
export SOURCE_PATH=$SNAP_COMMON/etc/libvirt
|
||||
|
||||
mkdir -p $SOURCE_PATH
|
||||
|
||||
for target in `find $TARGET_PATH -type d`; do
|
||||
link=$(echo $target | sed -e "s|$TARGET_PATH|$SOURCE_PATH|g")
|
||||
mkdir -p $link
|
||||
done
|
||||
|
||||
for target in `find $TARGET_PATH -not -type d`; do
|
||||
link=$(echo $target | sed -e "s|$TARGET_PATH|$SOURCE_PATH|g")
|
||||
if [ -f $target ] && [ ! -f $link ]; then
|
||||
ln -sf $target $link
|
||||
fi
|
||||
done
|
||||
|
||||
exec $@
|
5
snap/bin/sudo
Executable file
5
snap/bin/sudo
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
# fake sudo script - as daemons run as root use of real sudo is not required
|
||||
# strip sudo off args and re-exec command
|
||||
|
||||
exec ${@:1}
|
4
snap/etc/neutron/dhcp_agent.ini
Normal file
4
snap/etc/neutron/dhcp_agent.ini
Normal file
@ -0,0 +1,4 @@
|
||||
[DEFAULT]
|
||||
interface_driver = openvswitch
|
||||
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
|
||||
enable_isolated_metadata = True
|
2
snap/etc/neutron/l3_agent.ini
Normal file
2
snap/etc/neutron/l3_agent.ini
Normal file
@ -0,0 +1,2 @@
|
||||
[DEFAULT]
|
||||
interface_driver = openvswitch
|
0
snap/etc/neutron/metadata_agent.ini
Normal file
0
snap/etc/neutron/metadata_agent.ini
Normal file
@ -1,6 +1,6 @@
|
||||
# Snap provided defaults for neutron agents
|
||||
[DEFAULT]
|
||||
|
||||
|
||||
[AGENT]
|
||||
# Disable root_helper for snap usage
|
||||
root_helper =
|
||||
|
1
snap/etc/neutron/plugins/ml2/openvswitch_agent.ini
Normal file
1
snap/etc/neutron/plugins/ml2/openvswitch_agent.ini
Normal file
@ -0,0 +1 @@
|
||||
# Snap provided defaults for neutron-openvswitch-agent
|
@ -24,7 +24,53 @@ entry_points:
|
||||
binary: neutron-openvswitch-agent
|
||||
config-files:
|
||||
- "{snap}/etc/neutron/neutron.conf"
|
||||
- "{snap}/etc/neutron/plugins/ml2/openvswitch_agent.ini"
|
||||
- "{snap_common}/etc/neutron/neutron.conf"
|
||||
- "{snap_common}/etc/neutron/plugins/ml2/openvswitch_agent.ini"
|
||||
config-dirs:
|
||||
- "{snap_common}/etc/neutron.conf.d"
|
||||
log-file: "{snap_common}/log/neutron-openvswitch-agent.log"
|
||||
neutron-ovs-cleanup:
|
||||
binary: neutron-ovs-cleanup
|
||||
config-files:
|
||||
- "{snap}/etc/neutron/neutron.conf"
|
||||
- "{snap_common}/etc/neutron/neutron.conf"
|
||||
config-dirs:
|
||||
- "{snap_common}/etc/neutron.conf.d"
|
||||
neutron-netns-cleanup:
|
||||
binary: neutron-netns-cleanup
|
||||
config-files:
|
||||
- "{snap}/etc/neutron/neutron.conf"
|
||||
- "{snap_common}/etc/neutron/neutron.conf"
|
||||
config-dirs:
|
||||
- "{snap_common}/etc/neutron.conf.d"
|
||||
neutron-l3-agent:
|
||||
binary: neutron-l3-agent
|
||||
config-files:
|
||||
- "{snap}/etc/neutron/neutron.conf"
|
||||
- "{snap}/etc/neutron/l3_agent.ini"
|
||||
- "{snap_common}/etc/neutron/neutron.conf"
|
||||
- "{snap_common}/etc/neutron/l3_agent.ini"
|
||||
config-dirs:
|
||||
- "{snap_common}/etc/neutron.conf.d"
|
||||
log-file: "{snap_common}/log/neutron-l3-agent.log"
|
||||
neutron-dhcp-agent:
|
||||
binary: neutron-dhcp-agent
|
||||
config-files:
|
||||
- "{snap}/etc/neutron/neutron.conf"
|
||||
- "{snap}/etc/neutron/dhcp_agent.ini"
|
||||
- "{snap_common}/etc/neutron/neutron.conf"
|
||||
- "{snap_common}/etc/neutron/dhcp_agent.ini"
|
||||
config-dirs:
|
||||
- "{snap_common}/etc/neutron.conf.d"
|
||||
log-file: "{snap_common}/log/neutron-dhcp-agent.log"
|
||||
neutron-metadata-agent:
|
||||
binary: neutron-metadata-agent
|
||||
config-files:
|
||||
- "{snap}/etc/neutron/neutron.conf"
|
||||
- "{snap}/etc/neutron/metadata_agent.ini"
|
||||
- "{snap_common}/etc/neutron/neutron.conf"
|
||||
- "{snap_common}/etc/neutron/metadata_agent.ini"
|
||||
config-dirs:
|
||||
- "{snap_common}/etc/neutron.conf.d"
|
||||
log-file: "{snap_common}/log/neutron-metadata-agent.log"
|
||||
|
178
snapcraft.yaml
178
snapcraft.yaml
@ -38,6 +38,43 @@ apps:
|
||||
- process-control
|
||||
- system-trace
|
||||
- system-observe
|
||||
neutron-l3-agent:
|
||||
command: snap-openstack neutron-l3-agent
|
||||
daemon: simple
|
||||
plugs:
|
||||
- network
|
||||
- network-control
|
||||
- firewall-control
|
||||
- process-control
|
||||
- system-trace
|
||||
- system-observe
|
||||
neutron-dhcp-agent:
|
||||
command: snap-openstack neutron-dhcp-agent
|
||||
daemon: simple
|
||||
plugs:
|
||||
- network
|
||||
- network-control
|
||||
- firewall-control
|
||||
- process-control
|
||||
- system-trace
|
||||
- system-observe
|
||||
neutron-metadata-agent:
|
||||
command: snap-openstack neutron-metadata-agent
|
||||
daemon: simple
|
||||
plugs:
|
||||
- network
|
||||
- network-bind
|
||||
- network-control
|
||||
neutron-ovs-cleanup:
|
||||
command: snap-openstack neutron-ovs-cleanup
|
||||
plugs:
|
||||
- network
|
||||
- network-control
|
||||
neutron-netns-cleanup:
|
||||
command: snap-openstack neutron-netns-cleanup
|
||||
plugs:
|
||||
- network
|
||||
- network-control
|
||||
openvswitch:
|
||||
command: ovs-wrapper $SNAP/share/openvswitch/scripts/ovs-ctl start --system-id=random
|
||||
stop-command: ovs-wrapper $SNAP/share/openvswitch/scripts/ovs-ctl stop
|
||||
@ -65,7 +102,121 @@ apps:
|
||||
command: ovs-wrapper $SNAP/bin/ovs-dpctl
|
||||
plugs:
|
||||
- network
|
||||
libvirt-bin:
|
||||
command: libvirt-wrapper $SNAP/sbin/libvirtd
|
||||
daemon: simple
|
||||
plugs:
|
||||
- network
|
||||
- network-bind
|
||||
- network-control
|
||||
virtlockd:
|
||||
command: libvirt-wrapper $SNAP/sbin/virtlockd
|
||||
daemon: simple
|
||||
plugs:
|
||||
- network
|
||||
- network-bind
|
||||
- network-control
|
||||
virtlogd:
|
||||
command: libvirt-wrapper $SNAP/sbin/virtlogd
|
||||
daemon: simple
|
||||
plugs:
|
||||
- network
|
||||
- network-bind
|
||||
- network-control
|
||||
virsh:
|
||||
command: bin/virsh
|
||||
plugs:
|
||||
- network
|
||||
parts:
|
||||
qemu:
|
||||
source: http://wiki.qemu-project.org/download/qemu-2.7.0.tar.bz2
|
||||
plugin: autotools
|
||||
build-packages:
|
||||
- libaio-dev
|
||||
- acpica-tools
|
||||
- libasound2-dev
|
||||
- libattr1-dev
|
||||
- libcap-dev
|
||||
- libcap-ng-dev
|
||||
- libiscsi-dev
|
||||
- libnuma-dev
|
||||
- librados-dev
|
||||
- librbd-dev
|
||||
- libspice-server-dev
|
||||
- libspice-protocol-dev
|
||||
- libusb-1.0-0-dev
|
||||
- libusbredirparser-dev
|
||||
- zlib1g-dev
|
||||
- uuid-dev
|
||||
configflags:
|
||||
- "--target-list=x86_64-softmmu i386-softmmu"
|
||||
- "--prefix=/snap/$SNAPCRAFT_PROJECT_NAME/current"
|
||||
organize:
|
||||
# Hack to shift installed qemu back to root of snap
|
||||
# required to ensure that pathing to files etc works at
|
||||
# runtime
|
||||
"snap/nova-hypervisor/current/*": ""
|
||||
filesets:
|
||||
all:
|
||||
- -snap
|
||||
stage: [$all]
|
||||
snap: [$all]
|
||||
libvirt:
|
||||
after: [qemu]
|
||||
source: https://libvirt.org/sources/libvirt-2.4.0.tar.xz
|
||||
plugin: autotools
|
||||
build-packages:
|
||||
- libxml2-dev
|
||||
- libcurl4-gnutls-dev
|
||||
- libncurses5-dev
|
||||
- libreadline-dev
|
||||
- zlib1g-dev
|
||||
- libgcrypt20-dev
|
||||
- libgnutls28-dev
|
||||
- libsasl2-dev
|
||||
- libsanlock-dev
|
||||
- libiscsi-dev
|
||||
- librbd-dev
|
||||
- librados-dev
|
||||
- libyajl-dev
|
||||
- libpcap0.8-dev
|
||||
- libaudit-dev
|
||||
- libdevmapper-dev
|
||||
- libpciaccess-dev
|
||||
- libnl-3-dev
|
||||
- libnl-route-3-dev
|
||||
- libpolkit-gobject-1-dev
|
||||
- uuid-dev
|
||||
- libnuma-dev
|
||||
- python-all
|
||||
- python-six
|
||||
configflags:
|
||||
- "--with-qemu"
|
||||
- "--without-xen"
|
||||
- "--without-openvz"
|
||||
- "--without-vmware"
|
||||
- "--without-xenapi"
|
||||
- "--without-esx"
|
||||
- "--without-hyperv"
|
||||
- "--without-lxc"
|
||||
- "--without-vz"
|
||||
- "--without-vbox"
|
||||
- "--without-uml"
|
||||
- "--without-sasl"
|
||||
- "--prefix=/snap/$SNAPCRAFT_PROJECT_NAME/current"
|
||||
- "--localstatedir=/var/snap/$SNAPCRAFT_PROJECT_NAME/common/run"
|
||||
- "--sysconfdir=/var/snap/$SNAPCRAFT_PROJECT_NAME/common/etc"
|
||||
organize:
|
||||
# Hack to shift installed libvirt back to root of snap
|
||||
# required to ensure that pathing to files etc works at
|
||||
# runtime
|
||||
"snap/nova-hypervisor/current/*": ""
|
||||
"var/snap/nova-hypervisor/common/*": ""
|
||||
filesets:
|
||||
all:
|
||||
- -snap
|
||||
stage: [$all]
|
||||
snap: [$all]
|
||||
openvswitch:
|
||||
source: http://openvswitch.org/releases/openvswitch-2.6.1.tar.gz
|
||||
plugin: autotools
|
||||
@ -107,6 +258,33 @@ parts:
|
||||
templates:
|
||||
after:
|
||||
- nova
|
||||
- qemu
|
||||
- libvirt
|
||||
- openvswitch
|
||||
plugin: dump
|
||||
source: snap
|
||||
config-nova:
|
||||
after:
|
||||
- nova
|
||||
plugin: dump
|
||||
source: http://tarballs.openstack.org/nova/nova-master.tar.gz
|
||||
filesets:
|
||||
etc:
|
||||
- etc/nova/*
|
||||
stage: [$etc]
|
||||
snap: [$etc]
|
||||
config-neutron:
|
||||
after:
|
||||
- nova
|
||||
plugin: dump
|
||||
source: http://tarballs.openstack.org/neutron/neutron-master.tar.gz
|
||||
organize:
|
||||
etc/*.conf: etc/neutron/
|
||||
etc/*.ini: etc/neutron/
|
||||
etc/*.json: etc/neutron/
|
||||
etc/rootwrap.d/*: etc/neutron/rootwrap.d/
|
||||
filesets:
|
||||
etc:
|
||||
- etc/neutron/*
|
||||
stage: [$etc]
|
||||
snap: [$etc]
|
||||
|
Loading…
x
Reference in New Issue
Block a user