Skip to content

Commit e69120e

Browse files
weiyuhang2011fuweid
authored andcommitted
docs: fix broken links
Signed-off-by: Yuhang Wei <[email protected]>
1 parent dafb1b6 commit e69120e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

crates/logging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Shim v2 runtime supports pluggable logging binaries via stdio URIs.
99
This crate implement `logging::run` to easy custom logger implementations in Rust.
1010

11-
[containerd Documentation](https://github.com/containerd/containerd/tree/master/runtime/v2#logging)
11+
[containerd Documentation](https://github.com/containerd/containerd/tree/master/core/runtime/v2#logging)
1212

1313
## Example
1414

crates/shim-protos/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ This crate is mainly expected to be useful to interact with containerd's shim ru
1212
Runtime v2 introduces a first class shim API for runtime authors to integrate with containerd.
1313
The shim API is minimal and scoped to the execution lifecycle of a container.
1414

15-
To learn how containerd's shim v2 runtime works in details, please refer to the [documentation](https://github.com/containerd/containerd/blob/main/runtime/v2/README.md).
15+
To learn how containerd's shim v2 runtime works in details, please refer to the [documentation](https://github.com/containerd/containerd/blob/main/core/runtime/v2/README.md).
1616

1717
## Design
1818
The `containerd-shim-protos` crate provides [Protobuf](https://github.com/protocolbuffers/protobuf.git) message
1919
and [TTRPC](https://github.com/containerd/ttrpc.git) service definitions for the
20-
[Containerd shim v2](https://github.com/containerd/containerd/blob/main/runtime/v2/task/shim.proto) protocol.
20+
[Containerd shim v2](https://github.com/containerd/containerd/blob/main/api/runtime/task/v2/shim.proto) protocol.
2121

2222
The message and service definitions are auto-generated from protobuf source files under `vendor/`
2323
by using [ttrpc-codegen](https://github.com/containerd/ttrpc-rust/tree/master/ttrpc-codegen). So please do not

crates/shim/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This crate simplifies shim v2 runtime development for containerd. It handles com
1919
as command line parsing, setting up shim's TTRPC server, logging, events, etc.
2020

2121
Clients are expected to implement [Shim] and [Task] traits with task handling routines.
22-
This generally replicates same API as in Go [version](https://github.com/containerd/containerd/blob/main/runtime/v2/example/cmd/main.go).
22+
This generally replicates same API as in Go [version](https://github.com/containerd/containerd/blob/main/core/runtime/v2/example/cmd/main.go).
2323

2424
Once implemented, shim's bootstrap code is as easy as:
2525
```text

crates/snapshots/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $ ctr i pull --snapshotter custom docker.io/library/hello-world:latest
4141
## Getting started
4242

4343
Snapshotters are required to implement `Snapshotter` trait (which is very similar to containerd's
44-
[Snapshotter](https://github.com/containerd/containerd/blob/main/snapshots/snapshotter.go) interface).
44+
[Snapshotter](https://github.com/containerd/containerd/blob/main/core/snapshots/snapshotter.go) interface).
4545

4646
```rust,ignore
4747
use std::collections::HashMap;

0 commit comments

Comments
 (0)