I have an infrastructure with Openshift (containers) Jenkins (build and deploy jobs) Nexus (here I store WAR and JAR files) and GIT (groovy/yaml files).
Imaging I create an image with Tomcat APP server, a WAR file and some JAR files.
What would be the way to do configuration changes (for example in a file inside /whatever/webapps/app/config/properties.conf
or even /etc/tomcat/conf/some.conf
) withouth having to rebuild the image?
Extra info:
What I want to achieve is configuration management withouth having to rebuild the war and therefore rebuild/redeploy the image. Is the ConfigMap for this use?