Define Java Heap size in Yaml on Openshift on-premise installation

0
How can we define Mendix java heap size parameters in the YAML file for an openshift on-premise installation?  
asked
1 answers
0

You can put that in the javaopts

 

javaopts: [
   "-Dfile.encoding=UTF-8", "-XX:MaxPermSize=128M", "-Xmx512M", "-Xms512M",
   "-Djava.io.tmpdir=/srv/mendix/data/tmp"
 ]

https://docs.mendix.com/howto8/monitoring-troubleshooting/manage-app-performance-with-new-relic/

answered