Skip to content

Commit ef7efda

Browse files
committed
*: rename serialization.md -> config.md
Closes: #283 Signed-off-by: Vincent Batts <[email protected]>
1 parent e566f16 commit ef7efda

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ DOC_FILES := \
2828
descriptor.md \
2929
image-layout.md \
3030
layer.md \
31-
serialization.md \
31+
config.md \
3232
manifest.md
3333

3434
FIGURE_FILES := \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The OCI Image Format project creates and maintains the software shipping container image format spec (OCI Image Format). The goal of this specification is to enable the creation of interoperable tools for building, transporting, and preparing a container image to run.
44

5-
This specification defines how to create an OCI Image, which will generally be done by a build system, and output an [image manifest](manifest.md), a set of [filesystem layers](layer.md), and an [image configuration](serialization.md).
5+
This specification defines how to create an OCI Image, which will generally be done by a build system, and output an [image manifest](manifest.md), a set of [filesystem layers](layer.md), and an [image configuration](config.md).
66
At a high level the image manifest contains metadata about the contents and dependencies of the image including the content-addressable identity of one or more filesystem serialization archives that will be unpacked to make up the final runnable filesystem.
77
The image configuration includes information such as application arguments, environments, etc.
88
The combination of the image manifest, image configuration, and one or more filesystem serializations is called the "OCI Image".
@@ -21,7 +21,7 @@ The [Media Types](media-types.md) document is a starting point to understanding
2121

2222
The high level components of the spec include:
2323

24-
* An [image manifest](manifest.md), a set of [filesystem layers](layer.md), and [image configuration](serialization.md) (base layer)
24+
* An [image manifest](manifest.md), a set of [filesystem layers](layer.md), and [image configuration](config.md) (base layer)
2525
* A process of hashing the image format for integrity and content-addressing (base layer)
2626
* Signatures that are based on signing image content address (optional layer)
2727
* Naming that is federated based on DNS and can be delegated (optional layer)
File renamed without changes.

manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Unlike the [Manifest List](#manifest-list), which contains information about a s
135135
- **`config`** *[descriptor](descriptor.md)*
136136

137137
This REQUIRED property references a configuration object for a container, by digest.
138-
The referenced configuration object is a JSON blob that the runtime uses to set up the container, see [Image JSON Description](serialization.md#image-json-description).
138+
The referenced configuration object is a JSON blob that the runtime uses to set up the container, see [Image JSON Description](config.md#image-json-description).
139139

140140
- **`layers`** *array*
141141

media-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The following media types identify the formats described here and their referenc
55
- `application/vnd.oci.descriptor.v1+json`: [Content Descriptor](descriptor.md)
66
- `application/vnd.oci.image.manifest.list.v1+json`: [Manifest list](manifest.md#manifest-list)
77
- `application/vnd.oci.image.manifest.v1+json`: [Image manifest format](manifest.md#image-manifest)
8-
- `application/vnd.oci.image.config.v1+json`: [Container config JSON](serialization.md)
8+
- `application/vnd.oci.image.config.v1+json`: [Container config JSON](config.md)
99
- `application/vnd.oci.image.layer.tar+gzip`: ["Layer", as a gzipped tar archive](layer.md)
1010
- `application/vnd.oci.image.layer.nondistributable.tar+gzip`: ["Layer", as a gzipped tar that has distribution restrictions](layer.md#non-distributable-layers)
1111

schema/spec_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func TestValidateManifest(t *testing.T) {
4242
}
4343

4444
func TestValidateSerialization(t *testing.T) {
45-
validate(t, "../serialization.md")
45+
validate(t, "../config.md")
4646
}
4747

4848
// TODO(sur): include examples from all specification files

0 commit comments

Comments
 (0)