I am following the guide to use initContainers in Liquibase here - Using Liquibase in Kubernetes | Liquibase.com Blog.
There is a step to mount changelog.xml as a configmap. However my changelog.xml refers to multiple files via include
[include] . Is there a way to merge it for the configmap ?
Hello @Dibyajyotibehera ! The volume points to liquibase-changelog property, but liquibase-changelog can point to the directory containing the changelog.xml file instead of the changelog.xml file itself as it will be mapped to /liquibase/changelog
directory as per the volumeMount below:
volumeMounts:
- name: liquibase-changelog-volume
mountPath: /liquibase/changelog