Convert YAML file to Properties file or key Value Pair
1 min readJul 26, 2020
install yq CLI then :
yq r application.yaml --printMode pv "**" | sed 's/: /=/' > application.properties
Details ? check ; https://stackoverflow.com/a/63098014/747579
Done!
Thanks