I am trying to write a K6 TestRun CRD with the following limitations:
- We cannot use VolumeClaim due to certain limitation.
- The test does an “open()” on a file within the POD, which means we cannot use the archive option with ConfigMap as it does not allow it.
- The test file references other files in the repository in different directories, and other files references more other files. This means the relative directory structure should be preserved for the test to run. So, we cannot use a simple ConfigMap.
I would appreciate any suggestions on how this CRD might look like?