forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a534db3
commit 2cc8f76
Showing
160 changed files
with
3,688 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"description": "ContainerUser represents user identity information", | ||
"properties": { | ||
"linux": { | ||
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.LinuxContainerUser", | ||
"description": "Linux holds user identity information initially attached to the first process of the containers in Linux. Note that the actual running identity can be changed if the process has enough privilege to do so." | ||
} | ||
}, | ||
"type": "object", | ||
"$schema": "http://json-schema.org/schema#" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"description": "ContainerUser represents user identity information", | ||
"properties": { | ||
"linux": { | ||
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.LinuxContainerUser", | ||
"description": "Linux holds user identity information initially attached to the first process of the containers in Linux. Note that the actual running identity can be changed if the process has enough privilege to do so." | ||
} | ||
}, | ||
"type": "object", | ||
"$schema": "http://json-schema.org/schema#" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"description": "LinuxContainerUser represents user identity information in Linux containers", | ||
"properties": { | ||
"gid": { | ||
"description": "GID is the primary gid initially attached to the first process in the container", | ||
"format": "int64", | ||
"type": [ | ||
"integer", | ||
"null" | ||
] | ||
}, | ||
"supplementalGroups": { | ||
"description": "SupplementalGroups are the supplemental groups initially attached to the first process in the container", | ||
"items": { | ||
"format": "int64", | ||
"type": [ | ||
"integer", | ||
"null" | ||
] | ||
}, | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"x-kubernetes-list-type": "atomic" | ||
}, | ||
"uid": { | ||
"description": "UID is the primary uid initially attached to the first process in the container", | ||
"format": "int64", | ||
"type": [ | ||
"integer", | ||
"null" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"uid", | ||
"gid" | ||
], | ||
"type": "object", | ||
"$schema": "http://json-schema.org/schema#" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"description": "LinuxContainerUser represents user identity information in Linux containers", | ||
"properties": { | ||
"gid": { | ||
"description": "GID is the primary gid initially attached to the first process in the container", | ||
"format": "int64", | ||
"type": [ | ||
"integer", | ||
"null" | ||
] | ||
}, | ||
"supplementalGroups": { | ||
"description": "SupplementalGroups are the supplemental groups initially attached to the first process in the container", | ||
"items": { | ||
"format": "int64", | ||
"type": [ | ||
"integer", | ||
"null" | ||
] | ||
}, | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"x-kubernetes-list-type": "atomic" | ||
}, | ||
"uid": { | ||
"description": "UID is the primary uid initially attached to the first process in the container", | ||
"format": "int64", | ||
"type": [ | ||
"integer", | ||
"null" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"uid", | ||
"gid" | ||
], | ||
"type": "object", | ||
"$schema": "http://json-schema.org/schema#" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.