diff options
author | Peter Mikus <pmikus@cisco.com> | 2019-03-09 08:00:54 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2019-03-20 20:16:56 +0000 |
commit | 33bd6f2425ddff8e4167d36ea61b64ac81da3a65 (patch) | |
tree | 15e0c2e2e96cfbc1c225df88b3770baf64b925ab /resources/libraries/python/Constants.py | |
parent | 8231ea666c43c0d514708b41cf52667f5e8d0311 (diff) |
CSIT-1386 KernelVM - Part II
- Implementation of KernelVM (ThinVM)
- nf_density tests for KernelVM with VPP as VNF.
Change-Id: Ife5c2e1ab419c55cbcd442792f940db3a41da471
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries/python/Constants.py')
-rw-r--r-- | resources/libraries/python/Constants.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index b89f50c4df..506b71af69 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -46,6 +46,12 @@ class Constants(object): # QEMU install directory QEMU_INSTALL_DIR = '/opt/qemu-2.11.2' + # QEMU performance test VM kernel image path + QEMU_PERF_VM_KERNEL = '/opt/boot/vmlinuz' + + # QEMU performance test VM nested image path + QEMU_PERF_VM_IMAGE = '/var/lib/vm/csit-nested-1.7.img' + # TRex install version TREX_INSTALL_VERSION = '2.35' @@ -55,6 +61,9 @@ class Constants(object): # Kubernetes templates location RESOURCES_TPL_K8S = 'resources/templates/kubernetes' + # KernelVM templates location + RESOURCES_TPL_VM = 'resources/templates/vm' + # Honeycomb directory location at topology nodes: REMOTE_HC_DIR = '/opt/honeycomb' |