> On Jul 1, 2020, at 12:16 PM, Udo Kohlmeyer <u...@vmware.com> wrote: > > To think a little more left field, with our continued investment in K8’s, > maybe we can look into that area? > Run tests in parallel using K8’s?
It’s an interesting idea but even more complicated than the docker solution. Since k8s could schedule the job on any node we have to make sure the build is distributed to all nodes. We could do this with a shared volume or config map. The result collection would be limited to just the test output collected form log data, getting other artifacts from the test would be even more complicated. Probably need yet another shared volume for that, or more than one. Not impossible but pretty complicated workload. -Jake