Skip to content

Commit 76b8bae

Browse files
committed
README: update runtime-spec links to use main branch
- Updated several links in README.md, conversion.md, image-layout.md, and spec.md to point to the 'main' branch of the runtime-spec repository. - Replaced outdated 'master' and 'v1.0.0' references with 'main' for consistency with the latest branch structure. Signed-off-by: ChengyuZhu6 <[email protected]>
1 parent da92727 commit 76b8bae

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Additional documentation about how this group operates:
2121
## Running an OCI Image
2222

2323
The OCI Image Format partner project is the [OCI Runtime Spec project](https://github.com/opencontainers/runtime-spec).
24-
The Runtime Specification outlines how to run a "[filesystem bundle](https://github.com/opencontainers/runtime-spec/blob/master/bundle.md)" that is unpacked on disk.
24+
The Runtime Specification outlines how to run a "[filesystem bundle](https://github.com/opencontainers/runtime-spec/blob/main/bundle.md)" that is unpacked on disk.
2525
At a high-level an OCI implementation would download an OCI Image then unpack that image into an OCI Runtime filesystem bundle.
2626
At this point the OCI Runtime Bundle would be run by an OCI Runtime.
2727

conversion.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ Externally provided inputs are considered to be a modification of the `applicati
1919
For example, externally provided inputs MAY cause an environment variable to be added, removed or changed.
2020
However an implementation-defined default SHOULD NOT result in an environment variable being removed or changed.
2121

22-
[oci-runtime-bundle]: https://github.com/opencontainers/runtime-spec/blob/v1.0.0/bundle.md
23-
[oci-runtime-config]: https://github.com/opencontainers/runtime-spec/blob/v1.0.0/config.md
24-
2522
## Verbatim Fields
2623

2724
Certain image configuration fields have an identical counterpart in the runtime configuration.
@@ -128,3 +125,6 @@ If there is a conflict (same key but different value) between an implicit annota
128125

129126
A converter MAY add annotations which have keys not specified in the image.
130127
A converter MUST NOT modify the values of annotations specified in the image.
128+
129+
[oci-runtime-bundle]: https://github.com/opencontainers/runtime-spec/blob/main/bundle.md
130+
[oci-runtime-config]: https://github.com/opencontainers/runtime-spec/blob/main/config.md

image-layout.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
- The OCI Image Layout is the directory structure for OCI content-addressable blobs and [location-addressable](https://en.wikipedia.org/wiki/Content-addressable_storage#Content-addressed_vs._location-addressed) references (refs).
44
- This layout MAY be used in a variety of different transport mechanisms: archive formats (e.g. tar, zip), shared filesystem environments (e.g. nfs), or networked file fetching (e.g. http, ftp, rsync).
55

6-
Given an image layout and a ref, a tool can create an [OCI Runtime Specification bundle](https://github.com/opencontainers/runtime-spec/blob/v1.0.0/bundle.md) by:
6+
Given an image layout and a ref, a tool can create an [OCI Runtime Specification bundle](https://github.com/opencontainers/runtime-spec/blob/main/bundle.md) by:
77

88
- Following the ref to find a [manifest](manifest.md#image-manifest), possibly via an [image index](image-index.md)
99
- [Applying the filesystem layers](layer.md#applying) in the specified order
10-
- Converting the [image configuration](config.md) into an [OCI Runtime Specification `config.json`](https://github.com/opencontainers/runtime-spec/blob/v1.0.0/config.md)
10+
- Converting the [image configuration](config.md) into an [OCI Runtime Specification `config.json`](https://github.com/opencontainers/runtime-spec/blob/main/config.md)
1111

1212
## Content
1313

spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Typically, these manifests may provide different implementations of the image, p
4242

4343
![build diagram](img/build-diagram.png)
4444

45-
Once built the OCI Image can then be discovered by name, downloaded, verified by hash, trusted through a signature, and unpacked into an [OCI Runtime Bundle](https://github.com/opencontainers/runtime-spec/blob/master/bundle.md).
45+
Once built the OCI Image can then be discovered by name, downloaded, verified by hash, trusted through a signature, and unpacked into an [OCI Runtime Bundle](https://github.com/opencontainers/runtime-spec/blob/main/bundle.md).
4646

4747
![runtime diagram](img/run-diagram.png)
4848

0 commit comments

Comments
 (0)