Kubernetes integration with OpenStack networking
Go to file
Ilya Chukhnakov fa03953aff Experimental CNI & VIFBridge binding
This patch provides an experimental CNI driver. It's primary purpose
is to enable development of other components (e.g. functional tests,
service/LBaaSv2 support). It is expected to be replaced with daemon
to configure VIF and connect it to the pods and a small lightweight
client to serve as CNI driver called by Kubernetes.

NOTE: unit tests are not provided as part of this patch as it is yet
unclear what parts of it will be reused in daemon-based
implementation.

Change-Id: Iacc8439dd3aee910d542e48ed013d6d3f354786e
Partially-Implements: blueprint kuryr-k8s-integration
2016-12-05 18:05:22 +00:00
devstack Experimental CNI & VIFBridge binding 2016-12-05 18:05:22 +00:00
doc/source cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
etc Experimental CNI & VIFBridge binding 2016-12-05 18:05:22 +00:00
kuryr_kubernetes Experimental CNI & VIFBridge binding 2016-12-05 18:05:22 +00:00
scripts Controller service base 2016-10-04 21:56:50 +03:00
tools move config and opt generation to new kuryr-lib 2016-09-26 13:11:47 +00:00
.coveragerc tox: fix coverage 2016-11-18 10:14:56 +03:00
.gitignore tox: fix coverage 2016-11-18 10:14:56 +03:00
.gitreview Added .gitreview 2016-05-12 09:14:08 +00:00
.testr.conf cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
CONTRIBUTING.rst cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
HACKING.rst cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
LICENSE cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
MANIFEST.in cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
README.rst Show team and repo badges on README 2016-11-25 13:59:24 +01:00
babel.cfg cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
requirements.txt Experimental CNI & VIFBridge binding 2016-12-05 18:05:22 +00:00
setup.cfg Experimental CNI & VIFBridge binding 2016-12-05 18:05:22 +00:00
setup.py cookiecutter commit for kuryr-kubernetes 2016-05-22 08:54:07 +03:00
test-requirements.txt K8s and Neutron clients support 2016-10-03 16:07:03 +00:00
tox.ini tox: fix coverage 2016-11-18 10:14:56 +03:00

README.rst

Team and repository tags

image

kuryr-kubernetes

Kubernetes integration with OpenStack networking

Please fill here a long description which must be at least 3 lines wrapped on 80 cols, so that distribution package maintainers can use it in their packages. Note that this is a hard requirement.

Configuring Kuryr

Generate sample config, etc/kuryr.conf.sample, running the following:

$ ./tools/generate_config_file_samples.sh

Rename and copy config file at required path:

$ cp etc/kuryr.conf.sample /etc/kuryr/kuryr.conf

Edit Neutron section in /etc/kuryr/kuryr.conf, replace ADMIN_PASSWORD:

[neutron]
auth_url = http://127.0.0.1:35357/v3/
username = admin
user_domain_name = Default
password = ADMIN_PASSWORD
project_name = service
project_domain_name = Default
auth_type = password

In the same file uncomment the bindir parameter with the path to the Kuryr vif binding executables. For example, if you installed it on Debian or Ubuntu:

[DEFAULT]
bindir = /usr/local/libexec/kuryr

Features

  • TODO