Runtime hacks (#1344)

* Add Args/Image to runtime

* remove the hacks
This commit is contained in:
Asim Aslam
2020-03-13 18:39:59 +00:00
committed by GitHub
parent 3543b275e0
commit e803fb0855
12 changed files with 166 additions and 102 deletions

View File

@@ -31,10 +31,16 @@ message Event {
message CreateOptions {
// command to pass in
repeated string command = 1;
// args to pass into command
repeated string args = 2;
// environment to pass in
repeated string env = 2;
repeated string env = 3;
// output to send to
string output = 3;
string output = 4;
// create type of service
string type = 5;
// image to use
string image = 6;
}
message CreateRequest {