diff options
author | Feng Pan <fpan@redhat.com> | 2016-06-10 15:10:57 -0400 |
---|---|---|
committer | Feng Pan <fpan@redhat.com> | 2016-06-12 11:41:06 -0400 |
commit | 621a710d7992683a1bb818f37ac25975e5c4c9f7 (patch) | |
tree | 725fa0b5cb8e5827e5b08d141e23d87938c307ae /ci | |
parent | ce4770e46df1792f80d27a279d7c6cef2d9af5e0 (diff) |
Add ipv6 support in network environment
Change-Id: I8db0cc0f715e95414e20f8a1e4d49f8d77e7b9ae
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/deploy.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index da1d29e2..a2634c16 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -40,7 +40,7 @@ DEPLOY_OPTIONS="" CONFIG=${CONFIG:-'/var/opt/opnfv'} RESOURCES=${RESOURCES:-"$CONFIG/images"} LIB=${LIB:-"$CONFIG/lib"} -OPNFV_NETWORK_TYPES="admin_network private_network public_network storage_network" +OPNFV_NETWORK_TYPES="admin_network private_network public_network storage_network api_network" VM_CPUS=4 VM_RAM=8 @@ -51,6 +51,7 @@ NET_MAP['admin_network']="br-admin" NET_MAP['private_network']="br-private" NET_MAP['public_network']="br-public" NET_MAP['storage_network']="br-storage" +NET_MAP['api_network']="br-api" ext_net_type="interface" ip_address_family=4 |