File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,12 @@ service Transfer {
24
24
message TransferRequest {
25
25
google.protobuf.Any source = 1;
26
26
google.protobuf.Any destination = 2;
27
- // + options
27
+ TransferOptions options = 3;
28
+ }
29
+
30
+ message TransferOptions {
31
+ string progress_stream = 1;
32
+ // Progress min interval
28
33
}
29
34
```
30
35
@@ -37,10 +42,10 @@ message TransferRequest {
37
42
| Registry | Image Store | "pull" | 1.7 |
38
43
| Image Store | Registry | "push" | 1.7 |
39
44
| Object stream (Archive) | Image Store | "import" | 1.7 |
40
- | Image Store | Object stream (Archive) | "export" | 1.7 (in progress) |
45
+ | Image Store | Object stream (Archive) | "export" | 1.7 |
41
46
| Object stream (Layer) | Mount/Snapshot | "unpack" | Not implemented |
42
47
| Mount/Snapshot | Object stream (Layer) | "diff" | Not implemented |
43
- | Image Store | Image Store | "tag" | Not implemented |
48
+ | Image Store | Image Store | "tag" | 1.7 |
44
49
| Registry | Registry | mirror registry image | Not implemented |
45
50
46
51
### Local containerd daemon support
You can’t perform that action at this time.
0 commit comments