diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2017-02-14 23:52:10 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2017-02-14 23:53:40 -0600 |
commit | e719bf409fc5d711e1df8b8fb3a3da8660b0a3c0 (patch) | |
tree | e272680a7681b60819a2517be24e5261d9ee5efd /ci/genBundle.py | |
parent | 11d88375218cf94d24024b4178d2d1cd78e49999 (diff) |
modified to enable cpu pinning anf ceph.
Change-Id: I43e5fe208d771c9f1c92cdfc392b9ba1ddea41e4
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/genBundle.py')
-rw-r--r-- | ci/genBundle.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ci/genBundle.py b/ci/genBundle.py index fdc9a532..8075eeb9 100644 --- a/ci/genBundle.py +++ b/ci/genBundle.py @@ -182,12 +182,18 @@ if 'sfc' in features: config['os']['network']['sfc'] = True if 'dpdk' in features: config['os']['network']['dpdk'] = True + config['os']['beta']['huge_pages'] = True + config['os']['beta']['cpu_pin'] = True if 'bgpvpn' in features: config['os']['network']['bgpvpn'] = True if 'odll3' in features: config['os']['network']['odll3'] = True if 'dishypcon' in features: config['os']['hyperconverged'] = False +if 'hugepages' in features: + config['os']['beta']['huge_pages'] = True + config['os']['beta']['cpu_pin'] = True + # Set beta option from extra if 'publicapi' in extra: @@ -196,6 +202,7 @@ if 'radosgwcluster' in extra: config['os']['beta']['hacluster_ceph_radosgw'] = True if 'hugepages' in extra: config['os']['beta']['huge_pages'] = True + config['os']['beta']['cpu_pin'] = True if 'mitaka' in extra: config['os']['release'] = 'mitaka' if 'trusty' in extra: |