Hi all , I am using k6 operator for doing distributed load testing in k8 , the tests run fine . However as soon I put the nodeSelector property the tests do not run at all . No initialiser and starter pods are created . I am not able to debug the issue or what logs do I need to look
here is my yml
spec:
parallelism: {{workflow.parameters.parallelism}}
cleanup: post
script:
configMap:
name: {{workflow.parameters.configMapName}}
file: {{workflow.parameters.scriptFileName}}
arguments: --tag testid={{workflow.parameters.testId}} --log-output=file=/tmp/k6.log
starter:
nodeSelector:
cluster: internal-tools
initializer:
nodeSelector:
cluster: internal-tools
runner:
nodeSelector:
cluster: internal-tools
...... other things
can some one pls let me know what I am doing wrong