This section describes how to install and configure the Kuryr-libnetwork for Ubuntu 16.04 (LTS).
This guide assumes Docker is already installed. Refer Get Docker for Docker installation.
Create kuryr user and necessary directories:
Create user:
# groupadd --system kuryr
# useradd --home-dir "/var/lib/kuryr" \
--create-home \
--system \
--shell /bin/false \
-g kuryr \
kuryr
Create directories:
# mkdir -p /etc/kuryr
# chown kuryr:kuryr /etc/kuryr
Clone and install kuryr-libnetwork:
# apt-get install python-pip
# cd /var/lib/kuryr
# git clone -b stable/stein https://git.openstack.org/openstack/kuryr-libnetwork.git
# chown -R kuryr:kuryr kuryr-libnetwork
# cd kuryr-libnetwork
# pip install -r requirements.txt
# python setup.py install
Generate a sample configuration file:
# su -s /bin/sh -c "./tools/generate_config_file_samples.sh" kuryr
# su -s /bin/sh -c "cp etc/kuryr.conf.sample \
/etc/kuryr/kuryr.conf" kuryr
Edit the /etc/kuryr/kuryr.conf
:
In the [DEFAULT]
section, configure the path for the Kuryr
vif binding executables:
[DEFAULT]
...
bindir = /usr/local/libexec/kuryr
In the [neutron]
section, configure Identity service access:
[neutron]
...
www_authenticate_uri = http://controller:5000
auth_url = http://controller:35357
username = kuryr
user_domain_name = default
password = KURYR_PASSWORD
project_name = service
project_domain_name = default
auth_type = password
Replace KURYR_PASSWORD with the password you chose for the kuryr user in the Identity service.
Create an upstart config, it could be named as
/etc/systemd/system/kuryr-libnetwork.service
:
[Unit]
Description = Kuryr-libnetwork - Docker network plugin for Neutron
[Service]
ExecStart = /usr/local/bin/kuryr-server --config-file /etc/kuryr/kuryr.conf
CapabilityBoundingSet = CAP_NET_ADMIN
[Install]
WantedBy = multi-user.target
Enable and start the kuryr-libnetwork service:
# systemctl enable kuryr-libnetwork
# systemctl start kuryr-libnetwork
After Kuryr starts, please restart your Docker service:
# systemctl restart docker
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.