I'm trying to write a manifest for JPS deployment of an Jelastic application. Creating nodes and deploying webapps works fine but I can't create a database and load a sql dump into it using the manifest directives.
My configs section looks like this:
"configs": [ { "nodeType": "postgres9", "restart": false, "database": [{ "name": "somedbname", "user" : "someusername", "dump": "http://www.somehost.de/jelastic/somedump.sql" }] }, ... ] ...
It seems that the database section is completely ignored. Any ideas?