So I’m trying to replicate my production setup in pipelines for fun & fail fast…
I’m thinking of versioning my HAProxy configuration for services that are locally load-balanced in their own repo.
(Best Practices aside, we’re burning through decades of technological stagnation as fast as we can…)
Rationale would be that on the pipeline, I would spin an HAProxy service with its configuration file mounted from within the repository.
I know we can easily mount files from the host machine to a container.
Can I mount a file from the git repository into a service container?
Or will I conflict with the normal pipeline execution and try to mount a file that hasn’t been cloned yet?
Thanks