added make help for cri integration

Signed-off-by: Jordan Karaze <jordan.karaze@ibm.com>
This commit is contained in:
Jordan Karaze
2022-03-28 15:19:21 -05:00
parent d394e00c7e
commit cf571fa968
3 changed files with 12 additions and 2 deletions

View File

@@ -8,10 +8,19 @@ Before sending pull requests you should at least make sure your changes have pas
Follow the [building](../../BUILDING.md) instructions.
## CRI Integration Test
* Run CRI integration test:
* Run all CRI integration tests:
```bash
make cri-integration
```
* Run specific CRI integration tests: use the `FOCUS` parameter to specify the test case.
```bash
# run CRI integration tests that match the test string <TEST_NAME>
FOCUS=<TEST_NAME> make cri-integration
```
Example:
```bash
FOCUS=TestContainerListStats make cri-integration
```
## CRI Validation Test
[CRI validation test](https://github.com/kubernetes-sigs/cri-tools/blob/master/docs/validation.md) is a test framework for validating that a Container Runtime Interface (CRI) implementation such as containerd with the `cri` plugin meets all the requirements necessary to manage pod sandboxes, containers, images etc.