EDITD / kubetools

:nut_and_bolt: Kubetools is a tool and processes for developing and deploying microservices to Kubernetes.
MIT License
13 stars 2 forks source link

Correlate dev jobs with container context #72

Closed gchazot closed 4 years ago

gchazot commented 4 years ago

Previous code used the build/dockerfile to find a container matching matching the one wanted to run a job. However this is not accurate since:

Using containerContext is a little more accurate since it describes more precisely the container than just the dockerfile. Also any container with a dockerfile will anyway require a containercontext.

gchazot commented 4 years ago

Thanks @Fizzadar