Created config map using
kubectl create configmap scenarios-test --from-file=archive.tar
I am trying to schedule a job using a config map like this. I tested the scenario locally and there is no issue.
apiVersion: k6.io/v1alpha1
kind: TestRun
metadata:
name: k6-test
spec:
parallelism: 4
script:
configMap:
name: scenarios-test
file: archive.tar
It creates only k6-test-initializer-rx5j8 pods. K6 is not creating starters and jobs.
Can you please provide any suggestions or documentation to debug this issue?
Thank you!