mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
*/*: restore openstack
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
committed by
Alessandro Barbieri
parent
ee38810829
commit
5c8b17906e
4
sys-cluster/nova/Manifest
Normal file
4
sys-cluster/nova/Manifest
Normal file
@@ -0,0 +1,4 @@
|
||||
DIST nova-22.2.0.tar.gz 9271449 BLAKE2B c7b52f4d7e819152971c67f5f0a9f2b191e0235917efd04c799413ebfbf44500c64bae9ddd6082ef7b347c500d346f46fd07bad45a7fc4e5c397713867681dbe SHA512 acb9745b2bebd669f919a2d3d73e9dc5dad5aa3de49690daddd779fb6467139f857d67c6d8af3761f12db9bf6c5120d1af7bee3e73b3c0e0c44d6b41cafe7883
|
||||
DIST nova-22.2.1.tar.gz 9274586 BLAKE2B fb44f5cbd544c08d92aef48ef2858806245f1f36f2edc1a86a03189b460431add656d00dea830bf4fd324c79bf0d0e057b06836b25f554eea6416af3c2821bce SHA512 59df339bb00d4a7e087cc9caf6d6efcb1e5205ea8889502d00c4c22eb4acc6c0f19383de76f260382d56e145fad01088c3fd28f41d26441303e13b3b839ddcce
|
||||
DIST nova.conf.sample-22.2.0 187107 BLAKE2B e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612 SHA512 4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970
|
||||
DIST nova.conf.sample-22.2.1 187107 BLAKE2B e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612 SHA512 4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970
|
||||
4
sys-cluster/nova/files/nova-compute.conf
Normal file
4
sys-cluster/nova/files/nova-compute.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
[DEFAULT]
|
||||
# mkisofs_cmd is needed as the default provider for the binary was remvoed as
|
||||
# a package from Gentoo.
|
||||
mkisofs_cmd = /usr/bin/mkisofs
|
||||
3
sys-cluster/nova/files/nova-sudoers
Normal file
3
sys-cluster/nova/files/nova-sudoers
Normal file
@@ -0,0 +1,3 @@
|
||||
Defaults:nova !requiretty
|
||||
|
||||
nova ALL = (root) NOPASSWD: /usr/bin/nova-rootwrap
|
||||
25
sys-cluster/nova/files/nova.initd
Normal file
25
sys-cluster/nova/files/nova.initd
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
description="Starts ${SVCNAME} service for OpenStack"
|
||||
|
||||
command="/usr/bin/${SVCNAME}"
|
||||
command_args="--config-file /etc/nova/nova.conf"
|
||||
pidfile=/run/${SVCNAME}.pid
|
||||
command_background=true
|
||||
required_files=/etc/nova/nova.conf
|
||||
if [ "$SVCNAME" = nova-compute ]; then
|
||||
required_files="${required_files} /etc/nova/nova-compute.conf"
|
||||
command_args="${command_args} --config-file /etc/nova/nova-compute.conf"
|
||||
fi
|
||||
start_stop_daemon_args="-u ${NOVA_USER:-nova}"
|
||||
retry="SIGTERM/15"
|
||||
|
||||
depend() {
|
||||
use net
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
checkpath --directory --owner "${NOVA_USER:-nova}":"${NOVA_GROUP:-nova}" --mode 0775 "${NOVA_RUN:-/var/lock/nova}"
|
||||
}
|
||||
2
sys-cluster/nova/files/openstack-scsi-disk.rules
Normal file
2
sys-cluster/nova/files/openstack-scsi-disk.rules
Normal file
@@ -0,0 +1,2 @@
|
||||
KERNEL=="sd*", SUBSYSTEM=="block", ENV{ID_BUS}=="scsi", PROGRAM="/etc/nova/scsi-openscsi-link.sh %b $id", SYMLINK+="disk/by-path/%c"
|
||||
|
||||
93
sys-cluster/nova/files/scsi-openscsi-link.sh
Normal file
93
sys-cluster/nova/files/scsi-openscsi-link.sh
Normal file
@@ -0,0 +1,93 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Author: Geaaru
|
||||
# Date: October 23, 2014
|
||||
# Version: 0.1.0
|
||||
# License: GPL 2.0
|
||||
|
||||
# Description: Script for udev symlink creation of
|
||||
# scsi disk attached and visible under
|
||||
# /dev/disk/by-path/ with name convention
|
||||
# used in openstack LVM iscsi driver.
|
||||
#
|
||||
# Requirements: lsscsi (for retrieve LUN ID, I don't know how can i do that from udev/iscsiadm)
|
||||
|
||||
# Rules for UDEV must in this format:
|
||||
# KERNEL=="sd*", BUS=="scsi", PROGRAM="/etc/nova/scsi-openscsi-link.sh %b",SYMLINK+="disk/by-path/%c"
|
||||
|
||||
# NOTE: it seems that input params %b or others are not passed to script.
|
||||
# I try to retrieve it from environment variables.
|
||||
|
||||
if [[ -z "$DEVTYPE" || -z "$ID_BUS" ]] ; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "--------------------" >> /tmp/udev.log
|
||||
echo "ENV => `env`" >> /tmp/udev.log
|
||||
echo "--------------------" >> /tmp/udev.log
|
||||
|
||||
if [[ $DEVTYPE != "disk" || $ID_BUS != "scsi" ]]; then
|
||||
echo "EXIT 1" >> /tmp/udev.log
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# ID_SCSI variable what identify ?
|
||||
|
||||
HOST=`echo "$DEVPATH" | awk '{ split($0, word, "/"); print substr(word[4], 5); }'`
|
||||
|
||||
|
||||
|
||||
# Bins
|
||||
iscsiadm=/usr/sbin/iscsiadm
|
||||
lsscsi=/usr/bin/lsscsi
|
||||
|
||||
[ -e /sys/class/iscsi_host ] || exit 1
|
||||
|
||||
# Create file path like this:
|
||||
# /sys/class/iscsi_host/host11/device/session3/iscsi_session/session3/targetname
|
||||
file="/sys/class/iscsi_host/host${HOST}/device/session*/iscsi_session*/session*/targetname"
|
||||
|
||||
target_iqn=$(cat ${file})
|
||||
|
||||
if [ -z "${target_iqn}" ] ; then
|
||||
echo "EXIT 2" >> /tmp/udev.log
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Retrieve target_port because I can't retrieve it with iscsi_id
|
||||
# /lib/udev/scsi_id -g -x /dev/sdg
|
||||
# ID_SCSI=1
|
||||
# ID_VENDOR=IET
|
||||
# ID_VENDOR_ENC=IET\x20\x20\x20\x20\x20
|
||||
# ID_MODEL=VIRTUAL-DISK
|
||||
# ID_MODEL_ENC=VIRTUAL-DISK
|
||||
# ID_REVISION=0001
|
||||
# ID_TYPE=disk
|
||||
# ID_SERIAL=1IET_00010001
|
||||
# ID_SERIAL_SHORT=IET_00010001
|
||||
# ID_SCSI_SERIAL= beaf11a
|
||||
|
||||
# iscsiadm -m node | grep --colour=none iqn.2014-09.org.openstack:vol-cinder-f48f0a69-e871-4c47-9cd3-3ccb8c811363 | cut -d',' -f 1
|
||||
|
||||
tp_ispresent=$(${iscsiadm} -m node | grep --colour=none ${target_iqn} | wc -l)
|
||||
if [ x$tp_ispresent = x0 ] ; then
|
||||
# Target is not present. Ignore it.
|
||||
echo "EXIT 3" >> /tmp/udev.log
|
||||
exit 1
|
||||
fi
|
||||
|
||||
target_portal=$(${iscsiadm} -m node | grep --colour=none ${target_iqn} | cut -d',' -f 1)
|
||||
#target=$(${iscsiadm} -m node | grep --colour=none ${target_iqn} | cut -d' ' -f 1)
|
||||
#target_portal=$(echo ${target} | cut -d',' -f 1)
|
||||
target_lun=$(${lsscsi} | grep $DEVNAME | sed 's/.[0-9]*:[0-9]*:[0-9]*:\([0-9]*\).*/\1/')
|
||||
|
||||
echo "TARGET_PORTAL=$target_portal" >> /tmp/udev.log
|
||||
echo "TARGET_LUN=$target_lun" >> /tmp/udev.log
|
||||
|
||||
linkname="ip-${target_portal}-iscsi-${target_iqn}-lun-${target_lun}"
|
||||
|
||||
echo "RETURN ${linkname}" >> /tmp/udev.log
|
||||
|
||||
echo "${linkname}"
|
||||
|
||||
exit 0
|
||||
28
sys-cluster/nova/metadata.xml
Normal file
28
sys-cluster/nova/metadata.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>prometheanfire@gentoo.org</email>
|
||||
<name>Matthew Thode</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>openstack@gentoo.org</email>
|
||||
<name>Openstack</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
Nova is a cloud computing fabric controller
|
||||
(the main part of an IaaS system). It is written in Python.
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="compute">Installs the initscripts for the nova volume service</flag>
|
||||
<flag name="compute-only">only install stuff needed for a compute host</flag>
|
||||
<flag name="iscsi">Installs iscsi helper udev scripts</flag>
|
||||
<flag name="memcached">Installs the memcached server</flag>
|
||||
<flag name="novncproxy">Installs the initscripts for the nova novncproxy service</flag>
|
||||
<flag name="openvswitch">Installs openvswitch for the neutron openvswitch support</flag>
|
||||
<flag name="rabbitmq">Installs the rabbitmq server</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="launchpad">nova</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
213
sys-cluster/nova/nova-22.2.0.ebuild
Normal file
213
sys-cluster/nova/nova-22.2.0.ebuild
Normal file
@@ -0,0 +1,213 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_7 python3_8 )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
inherit distutils-r1 linux-info multilib udev
|
||||
|
||||
DESCRIPTION="Cloud computing fabric controller"
|
||||
HOMEPAGE="https://launchpad.net/nova"
|
||||
|
||||
if [[ ${PV} == *9999 ]];then
|
||||
inherit git-r3
|
||||
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample -> nova.conf.sample-${PV}"
|
||||
EGIT_REPO_URI="https://github.com/openstack/nova.git"
|
||||
EGIT_BRANCH="stable/victoria"
|
||||
else
|
||||
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample -> nova.conf.sample-${PV}
|
||||
https://tarballs.openstack.org/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
fi
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE="+compute compute-only iscsi +memcached +mysql +novncproxy openvswitch postgres +rabbitmq sqlite"
|
||||
REQUIRED_USE="
|
||||
!compute-only? ( || ( mysql postgres sqlite ) )
|
||||
compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )"
|
||||
|
||||
CDEPEND="
|
||||
>=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
|
||||
!~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
|
||||
DEPEND="
|
||||
${CDEPEND}
|
||||
app-admin/sudo"
|
||||
|
||||
RDEPEND="
|
||||
${CDEPEND}
|
||||
compute-only? (
|
||||
>=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
|
||||
)
|
||||
sqlite? (
|
||||
>=dev-python/sqlalchemy-1.2.19[sqlite,${PYTHON_USEDEP}]
|
||||
)
|
||||
mysql? (
|
||||
>=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
|
||||
!~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}]
|
||||
>=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
|
||||
)
|
||||
postgres? (
|
||||
>=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
|
||||
)
|
||||
>=dev-python/decorator-4.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/eventlet-0.22.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/jinja-2.10[${PYTHON_USEDEP}]
|
||||
>=dev-python/keystonemiddleware-4.17.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-2.7[${PYTHON_USEDEP}]
|
||||
>=dev-python/webob-1.8.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/greenlet-0.4.15[${PYTHON_USEDEP}]
|
||||
>=dev-python/pastedeploy-1.5.0-r1[${PYTHON_USEDEP}]
|
||||
>=dev-python/paste-2.0.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
|
||||
<dev-python/prettytable-0.8[${PYTHON_USEDEP}]
|
||||
>=dev-python/sqlalchemy-migrate-0.13.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
|
||||
>=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
|
||||
>=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-cinderclient-3.3.0[${PYTHON_USEDEP}]
|
||||
!~dev-python/python-cinderclient-4.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/keystoneauth-3.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-neutronclient-6.7.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-glanceclient-2.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.11.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/websockify-0.9.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-cache-1.26.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-concurrency-3.29.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-config-6.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-context-2.22.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-reports-1.18.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-serialization-1.21.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-upgradecheck-0.1.1[${PYTHON_USEDEP}]
|
||||
!~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-utils-4.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-db-4.44.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-rootwrap-5.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-messaging-10.3.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-policy-3.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-privsep-1.33.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-service-1.40.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/rfc3986-1.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/psutil-3.2.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-versionedobjects-1.35.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-brick-3.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-resource-classes-0.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-traits-2.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-vif-1.14.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-win-4.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/castellan-0.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/microversion-parse-0.2.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-xenapi-0.3.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/tooz-1.58.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cursive-0.2.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/pypowervm-1.1.15[${PYTHON_USEDEP}]
|
||||
>=dev-python/retrying-1.3.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-service-types-1.7.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/taskflow-3.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-dateutil-2.5.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/zVMCloudConnector-1.3.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/openstacksdk-0.35.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyyaml-3.13[${PYTHON_USEDEP}]
|
||||
dev-python/libvirt-python[${PYTHON_USEDEP}]
|
||||
app-emulation/libvirt[iscsi?]
|
||||
app-emulation/spice-html5
|
||||
novncproxy? ( www-apps/novnc )
|
||||
sys-apps/iproute2
|
||||
openvswitch? ( net-misc/openvswitch )
|
||||
rabbitmq? ( net-misc/rabbitmq-server )
|
||||
memcached? (
|
||||
net-misc/memcached
|
||||
>=dev-python/python-memcached-1.58
|
||||
)
|
||||
sys-fs/sysfsutils
|
||||
sys-fs/multipath-tools
|
||||
net-misc/bridge-utils
|
||||
compute? (
|
||||
app-cdr/cdrtools
|
||||
sys-fs/dosfstools
|
||||
app-emulation/qemu
|
||||
)
|
||||
iscsi? (
|
||||
sys-fs/lsscsi
|
||||
>=sys-block/open-iscsi-2.0.873-r1
|
||||
)
|
||||
acct-user/nova
|
||||
acct-group/nova"
|
||||
|
||||
#PATCHES=(
|
||||
#)
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
CONFIG_CHECK_MODULES="BLK_DEV_NBD VHOST_NET IP6_NF_FILTER IP6_NF_IPTABLES IP_NF_TARGET_REJECT \
|
||||
IP_NF_MANGLE IP_NF_TARGET_MASQUERADE NF_NAT_IPV4 IP_NF_FILTER IP_NF_IPTABLES \
|
||||
NF_CONNTRACK_IPV4 NF_DEFRAG_IPV4 NF_NAT_IPV4 NF_NAT NF_CONNTRACK NETFILTER_XTABLES \
|
||||
ISCSI_TCP SCSI_DH DM_MULTIPATH DM_SNAPSHOT"
|
||||
if linux_config_exists; then
|
||||
for module in ${CONFIG_CHECK_MODULES}; do
|
||||
linux_chkconfig_present ${module} || ewarn "${module} needs to be enabled in kernel"
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
sed -i '/^hacking/d' test-requirements.txt || die
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
if use !compute-only; then
|
||||
for svc in api conductor consoleauth network scheduler spicehtml5proxy xvpvncproxy; do
|
||||
newinitd "${FILESDIR}/nova.initd" "nova-${svc}"
|
||||
done
|
||||
fi
|
||||
use compute && newinitd "${FILESDIR}/nova.initd" "nova-compute"
|
||||
use novncproxy && newinitd "${FILESDIR}/nova.initd" "nova-novncproxy"
|
||||
|
||||
diropts -m 0750 -o nova -g qemu
|
||||
dodir /var/log/nova /var/lib/nova/instances
|
||||
diropts -m 0750 -o nova -g nova
|
||||
|
||||
insinto /etc/nova
|
||||
insopts -m 0640 -o nova -g nova
|
||||
newins "${DISTDIR}/nova.conf.sample-${PV}" "nova.conf.sample"
|
||||
doins "${FILESDIR}/nova-compute.conf"
|
||||
doins "${S}/etc/nova/"*
|
||||
# rootwrap filters
|
||||
insopts -m 0644
|
||||
insinto /etc/nova/rootwrap.d
|
||||
doins "etc/nova/rootwrap.d/compute.filters"
|
||||
|
||||
# add sudoers definitions for user nova
|
||||
insinto /etc/sudoers.d/
|
||||
insopts -m 0600 -o root -g root
|
||||
doins "${FILESDIR}/nova-sudoers"
|
||||
|
||||
if use iscsi ; then
|
||||
# Install udev rules for handle iscsi disk with right links under /dev
|
||||
udev_newrules "${FILESDIR}/openstack-scsi-disk.rules" 60-openstack-scsi-disk.rules
|
||||
|
||||
insinto /etc/nova/
|
||||
doins "${FILESDIR}/scsi-openscsi-link.sh"
|
||||
fi
|
||||
rm -r "${ED}/usr/etc"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use iscsi ; then
|
||||
elog "iscsid needs to be running if you want cinder to connect"
|
||||
fi
|
||||
}
|
||||
213
sys-cluster/nova/nova-22.2.1.ebuild
Normal file
213
sys-cluster/nova/nova-22.2.1.ebuild
Normal file
@@ -0,0 +1,213 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_7 python3_8 )
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
inherit distutils-r1 linux-info multilib udev
|
||||
|
||||
DESCRIPTION="Cloud computing fabric controller"
|
||||
HOMEPAGE="https://launchpad.net/nova"
|
||||
|
||||
if [[ ${PV} == *9999 ]];then
|
||||
inherit git-r3
|
||||
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample -> nova.conf.sample-${PV}"
|
||||
EGIT_REPO_URI="https://github.com/openstack/nova.git"
|
||||
EGIT_BRANCH="stable/victoria"
|
||||
else
|
||||
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample -> nova.conf.sample-${PV}
|
||||
https://tarballs.openstack.org/${PN}/${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE="+compute compute-only iscsi +memcached +mysql +novncproxy openvswitch postgres +rabbitmq sqlite"
|
||||
REQUIRED_USE="
|
||||
!compute-only? ( || ( mysql postgres sqlite ) )
|
||||
compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )"
|
||||
|
||||
CDEPEND="
|
||||
>=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
|
||||
!~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
|
||||
DEPEND="
|
||||
${CDEPEND}
|
||||
app-admin/sudo"
|
||||
|
||||
RDEPEND="
|
||||
${CDEPEND}
|
||||
compute-only? (
|
||||
>=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
|
||||
)
|
||||
sqlite? (
|
||||
>=dev-python/sqlalchemy-1.2.19[sqlite,${PYTHON_USEDEP}]
|
||||
)
|
||||
mysql? (
|
||||
>=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
|
||||
!~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}]
|
||||
>=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
|
||||
)
|
||||
postgres? (
|
||||
>=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
|
||||
)
|
||||
>=dev-python/decorator-4.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/eventlet-0.22.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/jinja-2.10[${PYTHON_USEDEP}]
|
||||
>=dev-python/keystonemiddleware-4.17.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-2.7[${PYTHON_USEDEP}]
|
||||
>=dev-python/webob-1.8.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/greenlet-0.4.15[${PYTHON_USEDEP}]
|
||||
>=dev-python/pastedeploy-1.5.0-r1[${PYTHON_USEDEP}]
|
||||
>=dev-python/paste-2.0.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
|
||||
<dev-python/prettytable-0.8[${PYTHON_USEDEP}]
|
||||
>=dev-python/sqlalchemy-migrate-0.13.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
|
||||
>=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
|
||||
>=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-cinderclient-3.3.0[${PYTHON_USEDEP}]
|
||||
!~dev-python/python-cinderclient-4.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/keystoneauth-3.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-neutronclient-6.7.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-glanceclient-2.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/six-1.11.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/websockify-0.9.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-cache-1.26.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-concurrency-3.29.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-config-6.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-context-2.22.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-reports-1.18.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-serialization-1.21.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-upgradecheck-0.1.1[${PYTHON_USEDEP}]
|
||||
!~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-utils-4.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-db-4.44.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-rootwrap-5.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-messaging-10.3.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-policy-3.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-privsep-1.33.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-service-1.40.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/rfc3986-1.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/psutil-3.2.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/oslo-versionedobjects-1.35.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-brick-3.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-resource-classes-0.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-traits-2.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-vif-1.14.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-win-4.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/castellan-0.16.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/microversion-parse-0.2.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-xenapi-0.3.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/tooz-1.58.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cursive-0.2.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/pypowervm-1.1.15[${PYTHON_USEDEP}]
|
||||
>=dev-python/retrying-1.3.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/os-service-types-1.7.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/taskflow-3.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-dateutil-2.5.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/zVMCloudConnector-1.3.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/openstacksdk-0.35.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyyaml-3.13[${PYTHON_USEDEP}]
|
||||
dev-python/libvirt-python[${PYTHON_USEDEP}]
|
||||
app-emulation/libvirt[iscsi?]
|
||||
app-emulation/spice-html5
|
||||
novncproxy? ( www-apps/novnc )
|
||||
sys-apps/iproute2
|
||||
openvswitch? ( net-misc/openvswitch )
|
||||
rabbitmq? ( net-misc/rabbitmq-server )
|
||||
memcached? (
|
||||
net-misc/memcached
|
||||
>=dev-python/python-memcached-1.58
|
||||
)
|
||||
sys-fs/sysfsutils
|
||||
sys-fs/multipath-tools
|
||||
net-misc/bridge-utils
|
||||
compute? (
|
||||
app-cdr/cdrtools
|
||||
sys-fs/dosfstools
|
||||
app-emulation/qemu
|
||||
)
|
||||
iscsi? (
|
||||
sys-fs/lsscsi
|
||||
>=sys-block/open-iscsi-2.0.873-r1
|
||||
)
|
||||
acct-user/nova
|
||||
acct-group/nova"
|
||||
|
||||
#PATCHES=(
|
||||
#)
|
||||
|
||||
pkg_setup() {
|
||||
linux-info_pkg_setup
|
||||
CONFIG_CHECK_MODULES="BLK_DEV_NBD VHOST_NET IP6_NF_FILTER IP6_NF_IPTABLES IP_NF_TARGET_REJECT \
|
||||
IP_NF_MANGLE IP_NF_TARGET_MASQUERADE NF_NAT_IPV4 IP_NF_FILTER IP_NF_IPTABLES \
|
||||
NF_CONNTRACK_IPV4 NF_DEFRAG_IPV4 NF_NAT_IPV4 NF_NAT NF_CONNTRACK NETFILTER_XTABLES \
|
||||
ISCSI_TCP SCSI_DH DM_MULTIPATH DM_SNAPSHOT"
|
||||
if linux_config_exists; then
|
||||
for module in ${CONFIG_CHECK_MODULES}; do
|
||||
linux_chkconfig_present ${module} || ewarn "${module} needs to be enabled in kernel"
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
sed -i '/^hacking/d' test-requirements.txt || die
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
if use !compute-only; then
|
||||
for svc in api conductor consoleauth network scheduler spicehtml5proxy xvpvncproxy; do
|
||||
newinitd "${FILESDIR}/nova.initd" "nova-${svc}"
|
||||
done
|
||||
fi
|
||||
use compute && newinitd "${FILESDIR}/nova.initd" "nova-compute"
|
||||
use novncproxy && newinitd "${FILESDIR}/nova.initd" "nova-novncproxy"
|
||||
|
||||
diropts -m 0750 -o nova -g qemu
|
||||
dodir /var/log/nova /var/lib/nova/instances
|
||||
diropts -m 0750 -o nova -g nova
|
||||
|
||||
insinto /etc/nova
|
||||
insopts -m 0640 -o nova -g nova
|
||||
newins "${DISTDIR}/nova.conf.sample-${PV}" "nova.conf.sample"
|
||||
doins "${FILESDIR}/nova-compute.conf"
|
||||
doins "${S}/etc/nova/"*
|
||||
# rootwrap filters
|
||||
insopts -m 0644
|
||||
insinto /etc/nova/rootwrap.d
|
||||
doins "etc/nova/rootwrap.d/compute.filters"
|
||||
|
||||
# add sudoers definitions for user nova
|
||||
insinto /etc/sudoers.d/
|
||||
insopts -m 0600 -o root -g root
|
||||
doins "${FILESDIR}/nova-sudoers"
|
||||
|
||||
if use iscsi ; then
|
||||
# Install udev rules for handle iscsi disk with right links under /dev
|
||||
udev_newrules "${FILESDIR}/openstack-scsi-disk.rules" 60-openstack-scsi-disk.rules
|
||||
|
||||
insinto /etc/nova/
|
||||
doins "${FILESDIR}/scsi-openscsi-link.sh"
|
||||
fi
|
||||
rm -r "${ED}/usr/etc"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use iscsi ; then
|
||||
elog "iscsid needs to be running if you want cinder to connect"
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user