Hello,
In the tests for test_good_parsing for integration tests, there is a test that fails if any extra string data is provided with an omit, like “prefix{{ omit }}”.
Is there a reason that this is a preferred behavior? I’m asking because I forked and made a change that will still omit a parameter if it has any prefix/postfix string data, but I wouldn’t want to submit a pull request for something that has already been decided against. If there is nothing against it, I can change the test so that condition allows the prefix and still omits the parameter and submit a pull request.
My particular use case was creating a docker container with a volume mounted in the container at a predefined place, but only if the host volume was defined, otherwise using ephemeral storage, like “{{ host_volume|default(omit) }}:/data/db”.
Thanks,
-Jacob Case