summaryrefslogtreecommitdiffstats
path: root/ci/genBundle.py
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2016-07-08 17:44:36 -0500
committerNarinder Gupta <narinder.gupta@canonical.com>2016-07-11 16:07:40 -0500
commit5159209c95c6f3bfa6f5edac9d8fa2d6c9f83e88 (patch)
tree33c00f6048a76b391d24ffc5f9f28a142def27fe /ci/genBundle.py
parent58a7649ce483def8ea008a76ad015849324b67c1 (diff)
modfied to use the trusty as extra feature.
Change-Id: I3fe1f9bcae7c4458116202ae14a059c3fbcfcb0e Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/genBundle.py')
-rw-r--r--ci/genBundle.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ci/genBundle.py b/ci/genBundle.py
index 89f41ce6..8c7d3a3c 100644
--- a/ci/genBundle.py
+++ b/ci/genBundle.py
@@ -146,6 +146,14 @@ if 'ipv6' in features:
config['os']['network']['ipv6'] = True
if 'ovs' in features:
config['os']['network']['enhanced_ovs'] = True
+if 'sfc' in features:
+ config['os']['network']['sfc'] = True
+if 'dpdk' in features:
+ config['os']['network']['dpdk'] = True
+if 'bgpvpn' in features:
+ config['os']['network']['bgpvpn'] = True
+if 'odll3' in features:
+ config['os']['network']['odll3'] = True
# Set beta option from extra
if 'publicapi' in extra:
@@ -154,6 +162,10 @@ if 'radosgwcluster' in extra:
config['os']['beta']['hacluster_ceph_radosgw'] = True
if 'hugepages' in extra:
config['os']['beta']['huge_pages'] = True
+if 'trusty' in extra:
+ config['ubuntu']['release'] = 'trusty'
+ if 'liberty' in extra:
+ config['os']['release'] = 'liberty'
# pp(config)