Describe your question in as much detail as possible:
If I set ‘concurrent: 1’, no issues occur. But when I comment that out I occasionally see issues.
What are you seeing, and how does that differ from what you expect to see?
The error I see is that I’m unable to perform a ‘docker login’ to my onprem harbor server because of invalid certificates. This is the error seen if I do not provide a ca-bundle.
The kubernetes secret ‘k-home-net’ contains the ca-bundle which needs to be mounted in the runner so the runner can have access to onprem servers. It’s acting as if a secret can only be mounted in a single pod at a time.
Looks like secrets and configmaps can only be mounted by one pod at a time … created a job to copy the certs from the secret over to the pvc and mounted a rwx pvc instead.