Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Server OS CentOS 8.4:

  • Right now we can not build and run from source so make sure to run test based on RPM 
  • Remove the existing daos bin (Remove the path and lib OR delete the local daos/install folder) 
  • Install daos rpm using the command :
Code Block
sudo yum install -y daos-client daos-tests daos daos-server daos-debuginfo
  • Test code will be under so do cd /usr/lib/daos/TESTING/ftest/
  • Change the code in the below file

...

Running Avocado with VMD device in Ci

  • Once you have your PR ready, Merge samirrav/DAOS-8161 branch to run the test in Ci
  • Ci has Two servers wolf-156/157 and a single CN wolf-180 so you can run a test with 4 daos servers and 1 client
  • Update the test file yaml file small.yaml,
    • VMD stage has Two servers so remove any extra servers
    • VMD stage has single head node which will act as a client so remove the client section from yaml,
    • Replace the bdev_list with variable disk ID which will be replace by Avocado  ["aaaa:aa:aa.a","bbbb:bb:bb.b"] 


Code Block
themeEmacs
--- a/src/tests/ftest/util/command_utils_base.pyior/small.yaml
+++ b/src/tests/ftest/util/command_utils_base.pyior/small.yaml
@@ -4152,719 +4152,714 @@ class YamlParameters(ObjectWithParameters)hosts:
             yaml_data = {}
         for name in self.get_param_names():
             value = getattr(self, name).value
-            if value is not None and value is not False:
+            if value is not None:
                 yaml_data[name] = value

         return yaml_data if self.title is None else {self.title: yaml_data}
diff --git a/src/tests/ftest/util/server_utils_params.py b/src/tests/ftest/util/server_utils_params.py
index 7d68ad1..4bbd033 100644
--- a/src/tests/ftest/util/server_utils_params.py
+++ b/src/tests/ftest/util/server_utils_params.py
@@ -106,6 +106,7 @@ class DaosServerYamlParameters(YamlParameters):

         self.provider = BasicParameter(None, default_provider)
         self.hyperthreads = BasicParameter(None, False)
+        self.disable_vmd = BasicParameter(None, True)
         self.socket_dir = BasicParameter(None, "/var/run/daos_server")
         self.nr_hugepages = BasicParameter(None, 4096)
         self.control_log_mask = BasicParameter(None, "DEBUG")
  • Update the test nvme_health.yaml file
Code Block
diff --git a/ test_servers:
     - server-A
     - server-B
-    - server-C
-    - server-D
-   test_clients:
-    - client-E
-    - client-F
-    - client-G
-    - client-H
 timeout: 700
 server_config:
     name: daos_server
     servers:
         bdev_class: nvme
-        bdev_list: ["0000:81:00.0","0000:da:00.0"]
+        bdev_list: ["aaaa:aa:aa.a","bbbb:bb:bb.b"]
         scm_class: dcpm
         scm_list: ["/dev/pmem0"]

...

...

  •  for running multiple servers from same branch  samirrav/DAOS-8161.
  • Change the Tag in test python file For example small.py test was running with large so for VMD it has been changed to run with small VMD cluster

    Code Block
    themeEmacs
    --- a/src/tests/ftest/

...

  • ior/

...

  • small.

...

  • py
    +++ b/src/tests/ftest/

...

  • ior/

...

  • small.

...

  • py
    @@ -

...

  • 33,

...

  • 7 +

...

  • 33,

...

  • 7 @@ 

...

  • class IorSmall(IorTestBase):
           

...

  •  

...

  •         

...

  •  multiple client processes in two separate nodes.
    
         

...

  •  

...

  •    

...

  • :avocado: tags=all,pr,daily_regression
    -      

...

  •  

...

  •  

...

  • :avocado: tags=hw,large
    +      

...

  •  

...

  •  

...

  • :avocado: tags=hw,small
           

...

  •  

...

  •  

...

  • :avocado: tags=daosio,checksum,mpich,dfuse,DAOS_5610
           

...

  •  

...

  •  

...

Execute test Avocado launch command and run nvme_health

  • ./launch.py -c -tc=wolf-[157] -ts=wolf-[157]  nvme_health

Server OS CentOS 8.3:

  • Installed the RPM on server and client  (use the above yum command)- This is needed so avocado can run systemd
  • Build daos on local system
  • Setup the daos_admin permission and SPDK setup script
  • Apply above patch for both test yaml file and util files
  • ./launch.py -c -tc=wolf-[170] -ts=wolf-[157] nvme_health
    :avocado: tags=iorsmall


  • Use the following Tag to run the HW small with VMD in Ci and skip most of the other tests and build in CI.
    • Quick-Functional: true
    • Skip-func-hw-test-medium: true
    • Skip-func-hw-test-large: true
    • Skip-scan-centos-rpms: True
    • Skip-scan-centos-15-rpms: True
    • Skip-func-test-vm: true
    • Test-tag-hw-small: iorsmall  <Use the test tag which needs to run with VMD small cluster>
  • Create the PR and that should run the selected TAG in Ci