X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FConstants.py;h=01e3a0154ad14e734f67dff0e22570518c2abf44;hb=28dc464d05d62c22ec6b3dee01fafffcd0ab754d;hp=0ae92f68ac78752d6671bf7677d658ae40f449c4;hpb=d4464a39149e2d71e625e46dee70678980ad164a;p=csit.git diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index 0ae92f68ac..01e3a0154a 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Cisco and/or its affiliates. +# Copyright (c) 2023 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -120,7 +120,7 @@ class Constants: """Constants used in CSIT.""" # Version for CSIT data model. See docs/model/. - MODEL_VERSION = u"1.2.0" + MODEL_VERSION = u"1.4.0" # Global off-switch in case JSON export is large or slow. EXPORT_JSON = get_optimistic_bool_from_env(u"EXPORT_JSON") @@ -143,9 +143,6 @@ class Constants: # Templates location RESOURCES_TPL = u"resources/templates" - # vat templates location - RESOURCES_TPL_VAT = u"resources/templates/vat" - # Kubernetes templates location RESOURCES_TPL_K8S = u"resources/templates/kubernetes" @@ -161,9 +158,6 @@ class Constants: # VPP Communications Library LD_PRELOAD library VCL_LDPRELOAD_LIBRARY = u"/usr/lib/x86_64-linux-gnu/libvcl_ldpreload.so" - # OpenVPP VAT binary name - VAT_BIN_NAME = u"vpp_api_test" - # VPP service unit name VPP_UNIT = u"vpp" @@ -368,14 +362,15 @@ class Constants: u"Intel-E822CQ": [u"vfio-pci", u"avf", u"af_xdp"], u"Intel-E810CQ": [u"vfio-pci", u"avf", u"af_xdp"], u"Amazon-Nitro-50G": [u"vfio-pci"], - u"Mellanox-CX556A": [u"rdma-core", u"af_xdp"], + u"Mellanox-CX556A": [u"rdma-core", u"mlx5_core", u"af_xdp"], } - # Each driver needs different prugin to work. + # Each driver needs different plugin to work. NIC_DRIVER_TO_PLUGINS = { u"vfio-pci": u"dpdk_plugin.so", u"avf": u"avf_plugin.so", u"rdma-core": u"rdma_plugin.so", + u"mlx5_core": u"dpdk_plugin.so", u"af_xdp": u"af_xdp_plugin.so", } @@ -384,6 +379,7 @@ class Constants: u"vfio-pci": u"DRV_VFIO_PCI", u"avf": u"DRV_AVF", u"rdma-core": u"DRV_RDMA_CORE", + u"mlx5_core": u"DRV_MLX5_CORE", u"af_xdp": u"DRV_AF_XDP", } @@ -392,6 +388,7 @@ class Constants: u"vfio-pci": u"", u"avf": u"avf-", u"rdma-core": u"rdma-", + u"mlx5_core": u"mlx5-", u"af_xdp": u"af-xdp-", } @@ -400,6 +397,7 @@ class Constants: u"vfio-pci": u"nic_vfs}= | 0", u"avf": u"nic_vfs}= | 1", u"rdma-core": u"nic_vfs}= | 0", + u"mlx5_core": u"nic_vfs}= | 0", u"af_xdp": u"nic_vfs}= | 0", }