SINTEF-9012 / cloudml

CloudML: Transparent deployment of cloud applications
GNU Lesser General Public License v3.0
27 stars 8 forks source link

Feature request: UploadCommand #6

Closed jakovits closed 11 years ago

jakovits commented 11 years ago

It would be very useful if there would also be a upload command or action that could be defined in the model, which would work similar to the Upload command in the shell. It could be executed concurrently with the retrievingCommand, but should result in a scp from the local machine.

This would allow uploading credentials.properties, keypair.pem and other files securely over scp.

nicolasferry commented 11 years ago

This feature has been added, you can now add to your resource in the JSON file the following to upload a file concurrently with the retrievingCommand: "uploadCommand": [ { "eClass":"net.cloudml.core:UploadCommand" , "source":"source_path", "target":"destination_path"} ] }