Configure all container image names in a one place #45746
Labels
area/container-image
area/housekeeping
Issue type for generalized tasks not related to bugs or enhancements
good first issue
Good for newcomers
Description
Loosely related to #37912
I recently found myself in a situation where I wanted the TS run to use images from Quay.io instead of Docker.io. I had all the necessary images and tags ready, and yet the last mile, to actually make the TS to use them, was a surprisingly annoying experience.
The images found here in pom.xml are a mere subset of what you need to successfully execute all categories from native-tests.json.
Some images are in pom.xml, some are scattered in Java source files and IIUC, some are left to be set by TestContainers and its own defaults.
I ended up doing this before Quarkus build:
...and then Quarkus build and then running the Integration testsuite.
It works, but it feels very brittle.
Proposal
I would like us to be able to configure all images in a one place, being it pom.xml or a property file. The source is riddled with people adding images here and there and you cannot even tell what all containers Quarkus depends on overall without cleverly grepping the sources for strings that might be container names.
I realize various extensions could bring arbitrary container image dependencies. This issue is meant to be concerned with the core Quarkus repo and its Integration testsuite in this main repo.
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: