grpc support for docker/lxc
This commit is contained in:
parent
802379d763
commit
0d24ca3387
2 changed files with 4 additions and 0 deletions
|
@ -490,6 +490,7 @@ class CoreGrpcServer(core_pb2_grpc.CoreApiServicer):
|
||||||
node_options = NodeOptions(name=node_proto.name, model=node_proto.model)
|
node_options = NodeOptions(name=node_proto.name, model=node_proto.model)
|
||||||
node_options.icon = node_proto.icon
|
node_options.icon = node_proto.icon
|
||||||
node_options.opaque = node_proto.opaque
|
node_options.opaque = node_proto.opaque
|
||||||
|
node_options.image = node_proto.image
|
||||||
node_options.services = node_proto.services
|
node_options.services = node_proto.services
|
||||||
|
|
||||||
position = node_proto.position
|
position = node_proto.position
|
||||||
|
|
|
@ -671,6 +671,8 @@ message NodeType {
|
||||||
PEER_TO_PEER = 12;
|
PEER_TO_PEER = 12;
|
||||||
CONTROL_NET = 13;
|
CONTROL_NET = 13;
|
||||||
EMANE_NET = 14;
|
EMANE_NET = 14;
|
||||||
|
DOCKER = 15;
|
||||||
|
LXC = 16;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -774,6 +776,7 @@ message Node {
|
||||||
string emane = 7;
|
string emane = 7;
|
||||||
string icon = 8;
|
string icon = 8;
|
||||||
string opaque = 9;
|
string opaque = 9;
|
||||||
|
string image = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Link {
|
message Link {
|
||||||
|
|
Loading…
Add table
Reference in a new issue