Skip to content

Commit ac4853c

Browse files
committed
adding location field for starting containers
1 parent ebe206e commit ac4853c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

containerz/containerz.proto

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ message StartContainerRequest {
501501
// Devices to be added to the container.
502502
repeated Device devices = 14;
503503

504-
// Location describes where a resources (image, container, volume) is located.
504+
// Location describes where a container should be located.
505505
enum Location {
506506
L_UNKNOWN = 0;
507507

@@ -515,9 +515,11 @@ message StartContainerRequest {
515515
L_ALL = 3;
516516
}
517517

518-
// location defines where a container should run. If a container is started on the backup, it is expected that any
519-
// resources (image, volume, etc) be replicated to the backup prior to actually starting the container. This parameter
520-
// cannot be updated, but rather the container needs to be removed and re-started with a new location value.
518+
// location defines where a container should run. If a container is started
519+
// on the backup, it is expected that any resources (image, volume, etc)
520+
// be replicated to the backup prior to actually starting the container.
521+
// This parameter cannot be updated, but rather the container needs to be
522+
// removed and re-started with a new location value.
521523
Location location = 15;
522524

523525
// Other container properties will be added as it becomes necessary.

0 commit comments

Comments
 (0)