Remove redundant 'limitations' section

Current 'Limitations' section covers overlapping cidr limitation
which is specific to kuryr-libnetwork and also already present
there. So removing it from kuryr-lib

Change-Id: I265bce248e07a5981556992182e3273f90da61fc
Closes-bug: #1629502
This commit is contained in:
Vikas Choudhary 2016-10-01 07:15:59 +05:30
parent e17ecd5b45
commit 9a88c72188
1 changed files with 0 additions and 30 deletions

View File

@ -165,33 +165,3 @@ website.
$ cd build/html
$ python -m SimpleHTTPServer 8080
Limitations
-----------
To create Docker networks with subnets having same/overlapping cidr, it is
expected to pass unique pool name for each such network creation Docker
command. Docker cli options -o and --ipam-opt should be used to pass pool
names as shown below:
::
$ sudo docker network create --driver=kuryr --ipam-driver=kuryr \
--subnet 10.0.0.0/16 --ip-range 10.0.0.0/24 \
-o neutron.pool.name=neutron_pool1 \
--ipam-opt=neutron.pool.name=neutron_pool1 \
foo
eddb51ebca09339cb17aaec05e48ffe60659ced6f3fc41b020b0eb506d364
Now Docker user creates another network with same cidr as the previous one,
i.e 10.0.0.0/16, but with different pool name, neutron_pool2:
::
$ sudo docker network create --driver=kuryr --ipam-driver=kuryr \
--subnet 10.0.0.0/16 --ip-range 10.0.0.0/24 \
-o neutron.pool.name=neutron_pool2 \
--ipam-opt=neutron.pool.name=neutron_pool2 \
bar
397badb51ebca09339cb17aaec05e48ffe60659ced6f3fc41b020b0eb506d786