Skip to content

Commit 2a67f81

Browse files
Merge pull request #900 from wking/oci-runtime-specification
*: Add "Initiative" to OCI Runtime Specification and expand OCI
2 parents 3294695 + d4f835d commit 2a67f81

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ For all platform-specific configuration values, the scope defined below in the [
1414

1515
## <a name="configSpecificationVersion" />Specification version
1616

17-
* **`ociVersion`** (string, REQUIRED) MUST be in [SemVer v2.0.0][semver-v2.0.0] format and specifies the version of the Open Container Runtime Specification with which the bundle complies.
18-
The Open Container Runtime Specification follows semantic versioning and retains forward and backward compatibility within major versions.
17+
* **`ociVersion`** (string, REQUIRED) MUST be in [SemVer v2.0.0][semver-v2.0.0] format and specifies the version of the Open Container Initiative Runtime Specification with which the bundle complies.
18+
The Open Container Initiative Runtime Specification follows semantic versioning and retains forward and backward compatibility within major versions.
1919
For example, if a configuration is compliant with version 1.1 of this specification, it is compatible with all runtimes that support any 1.1 or later release of this specification, but is not compatible with a runtime that supports 1.0 and not 1.1.
2020

2121
### Example

schema/config-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "Open Container Runtime Specification Container Configuration Schema",
2+
"description": "Open Container Initiative Runtime Specification Container Configuration Schema",
33
"$schema": "http://json-schema.org/draft-04/schema#",
44
"id": "https://opencontainers.org/schema/bundle",
55
"type": "object",

schema/defs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "Definitions used throughout the Open Container Runtime Specification",
2+
"description": "Definitions used throughout the Open Container Initiative Runtime Specification",
33
"definitions": {
44
"int8": {
55
"type": "integer",
@@ -145,7 +145,7 @@
145145
]
146146
},
147147
"ociVersion": {
148-
"description": "The version of Open Container Runtime Specification that the document complies with",
148+
"description": "The version of Open Container Initiative Runtime Specification that the document complies with",
149149
"type": "string"
150150
},
151151
"annotations": {

spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The [Open Container Initiative][oci] develops specifications for standards on Op
44

55
# <a name="ociRuntimeSpecAbstract" />Abstract
66

7-
The OCI Runtime Specification aims to specify the configuration, execution environment, and lifecycle of a container.
7+
The Open Container Initiative Runtime Specification aims to specify the configuration, execution environment, and lifecycle of a container.
88

99
A container's configuration is specified as the `config.json` for the supported platforms and details the fields that enable the creation of a container.
1010
The execution environment is specified to ensure that applications running inside a container have a consistent environment between runtimes along with common actions defined for the container's lifecycle.

specs-go/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "os"
44

55
// Spec is the base configuration for the container.
66
type Spec struct {
7-
// Version of the Open Container Runtime Specification with which the bundle complies.
7+
// Version of the Open Container Initiative Runtime Specification with which the bundle complies.
88
Version string `json:"ociVersion"`
99
// Process configures the container process.
1010
Process *Process `json:"process,omitempty"`

0 commit comments

Comments
 (0)