Install quantum-api from github.
Change-Id: If7ae61bce1ee263077ecd3e49beab4e5c8f97cf2
This commit is contained in:
parent
804e94b5eb
commit
d25f89ad12
2
elements/quantum-api/README.md
Normal file
2
elements/quantum-api/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Installs Quantum API service from github.
|
||||||
|
|
7
elements/quantum-api/first-boot.d/05-quantum-api
Executable file
7
elements/quantum-api/first-boot.d/05-quantum-api
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
set -o xtrace
|
||||||
|
|
||||||
|
# upstart script
|
||||||
|
cp -f $(dirname $0)/etc_init_quantum-api.conf /etc/init/quantum-api.conf
|
||||||
|
|
23
elements/quantum-api/first-boot.d/etc_init_quantum-api.conf
Normal file
23
elements/quantum-api/first-boot.d/etc_init_quantum-api.conf
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
description "OpenStack Quantum service"
|
||||||
|
|
||||||
|
# TODO: see if this can be consumed from upstream packaging, instead of being repeated here.
|
||||||
|
|
||||||
|
start on (local-filesystems and net-device-up IFACE!=lo)
|
||||||
|
stop on runlevel [016]
|
||||||
|
|
||||||
|
respawn
|
||||||
|
|
||||||
|
pre-start script
|
||||||
|
mkdir -p /var/run/quantum
|
||||||
|
chown quantum:root /var/run/quantum
|
||||||
|
mkdir -p /var/lib/quantum
|
||||||
|
chown quantum:root /var/lib/quantum
|
||||||
|
mkdir -p /var/log/quantum
|
||||||
|
chown quantum:root /var/log/quantum
|
||||||
|
end script
|
||||||
|
|
||||||
|
script
|
||||||
|
exec start-stop-daemon --start --chuid quantum --exec /opt/stack/quantum/bin/quantum-server -- \
|
||||||
|
--config-file /etc/quantum/quantum.conf \
|
||||||
|
--log-file /var/log/quantum/server.log
|
||||||
|
end script
|
34
elements/quantum-api/install.d/05-quantum-api
Executable file
34
elements/quantum-api/install.d/05-quantum-api
Executable file
@ -0,0 +1,34 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
set -o xtrace
|
||||||
|
|
||||||
|
useradd -G admin -m quantum -s /bin/false
|
||||||
|
|
||||||
|
DEBIAN_FRONTEND=noninteractive apt-get -y install \
|
||||||
|
python-pip git-core python-setuptools python-dev python-lxml python-netaddr \
|
||||||
|
python-pastescript python-pastedeploy python-paste python-sqlalchemy \
|
||||||
|
python-greenlet python-routes python-simplejson python-webob rabbitmq-server
|
||||||
|
|
||||||
|
OS_ROOT=/opt/stack
|
||||||
|
mkdir -p $OS_ROOT
|
||||||
|
|
||||||
|
# clone source
|
||||||
|
QUANTUM_ROOT=$OS_ROOT/quantum
|
||||||
|
git clone https://github.com/openstack/quantum.git $QUANTUM_ROOT
|
||||||
|
cd $QUANTUM_ROOT
|
||||||
|
git checkout master
|
||||||
|
|
||||||
|
# pip dependencies
|
||||||
|
python setup.py egg_info
|
||||||
|
pip install -r quantum.egg-info/requires.txt
|
||||||
|
python setup.py install
|
||||||
|
cd -
|
||||||
|
|
||||||
|
# config
|
||||||
|
mkdir -p /etc/quantum
|
||||||
|
cp $QUANTUM_ROOT/etc/quantum.conf /etc/quantum
|
||||||
|
cp $QUANTUM_ROOT/etc/policy.json /etc/quantum
|
||||||
|
cp $QUANTUM_ROOT/etc/api-paste.ini /etc/quantum
|
||||||
|
|
||||||
|
# default is 'fake plugin', with which service won't start
|
||||||
|
sed -i 's/core_plugin =.*/core_plugin = quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2/' /etc/quantum/quantum.conf
|
Loading…
Reference in New Issue
Block a user