Hi,
How do we escape : in map type param?
For example, we have:
-Dkubernetes.jobmanager.annotations=KEY:V:A:L:U:E
Which should result in {“KEY”: “V:A:L:U:E”}.
Best,
kevin
Figured it out, pulled StructuredOptionsSplitter into a debugger and was able to get it working with: -Dkubernetes.jobmanager.annotations="\"KEY:\"\"V:A:L:U:E\"\"\"" Best kevin
Figured it out, pulled StructuredOptionsSplitter into a debugger and was able to get it working with:
-Dkubernetes.jobmanager.annotations="\"KEY:\"\"V:A:L:U:E\"\"\""
Best