docs: Update transfer service docs to reflect completed implementations for 1.7

Signed-off-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
Bryant Biggs 2023-09-26 09:18:17 -04:00
parent c33249cbe6
commit bf4fbe4e87

View File

@ -24,7 +24,12 @@ service Transfer {
message TransferRequest { message TransferRequest {
google.protobuf.Any source = 1; google.protobuf.Any source = 1;
google.protobuf.Any destination = 2; google.protobuf.Any destination = 2;
// + options TransferOptions options = 3;
}
message TransferOptions {
string progress_stream = 1;
// Progress min interval
} }
``` ```
@ -37,10 +42,10 @@ message TransferRequest {
| Registry | Image Store | "pull" | 1.7 | | Registry | Image Store | "pull" | 1.7 |
| Image Store | Registry | "push" | 1.7 | | Image Store | Registry | "push" | 1.7 |
| Object stream (Archive) | Image Store | "import" | 1.7 | | Object stream (Archive) | Image Store | "import" | 1.7 |
| Image Store | Object stream (Archive) | "export" | 1.7 (in progress) | | Image Store | Object stream (Archive) | "export" | 1.7 |
| Object stream (Layer) | Mount/Snapshot | "unpack" | Not implemented | | Object stream (Layer) | Mount/Snapshot | "unpack" | Not implemented |
| Mount/Snapshot | Object stream (Layer) | "diff" | Not implemented | | Mount/Snapshot | Object stream (Layer) | "diff" | Not implemented |
| Image Store | Image Store | "tag" | Not implemented | | Image Store | Image Store | "tag" | 1.7 |
| Registry | Registry | mirror registry image | Not implemented | | Registry | Registry | mirror registry image | Not implemented |
### Local containerd daemon support ### Local containerd daemon support