How to disable the --quiet flag in the pods created by testrun jobs

Hello. I have been trying to test a particular link with the k6 operator, and i have been using the logs to try to find the reason it is unreachable, but recently i stopped seeing the logs. I only get the results.

Using
kubectl describe pod <pod_name> -n

I found there was a --quiet flag in the pod’s container argument…which i’m almost sure wasn’t there before. I have not found it specified in any of my manifests. Is there a way to disable it in consequent jobs so i can see the logs again?

Hi @aricmo, welcome to the forum :wave:

By default, --quiet is being passed to all test runs. This behaviour has been true for years now. You can bypass it in TestRun definition like this:

spec:
  quiet: "false"