Hi,
I'm using the helm chart for running a graphdb instance, installation happens via terraform in a CI/CD system. I've created a configMap for the graphdb.properties and was confused to see that changes in that configMap never reach the graphdb pod. The reason is that this configMap is only being used in the init container. If the configMap does not exist in the pod's filesystem, it is created by copying it from the configMap.
I'd like to keep the content of graphdb.properties in my git and have the CI/CD system take care of changes in a clean way. Therefore, I'd like to have a way of directly mounting this configMap in the pod that runs graphdb. The current way of only copying it once seems very intransparent to me...
Best regards,
Michael Kiefer