Skip to content

redhat-best-practices-for-k8s/cnfextensions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to create cnf extensions projects

This repository proposes a method to extend the CNF test suite beyond the original test cases. Steps to add private test cases:

cd cnf-certification-test/cnf-certification-test
  • add a new import line in suite_test.go:
import _ "github.com/myorg/example"
  • build the test suite and run it as usual. The following line will run the existing networking suite and the new extended "mynewsuite" defined in the hypothetical https://github.com/myorg/example project
./run-cnf-suites.sh -f networking mynewsuite