-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add oci.manifest.digest, container.image.repo_digests and make contai…
…ner.image.tag array (#159) Co-authored-by: Joao Grassi <[email protected]>
- Loading branch information
1 parent
ff20082
commit 9e3ac90
Showing
4 changed files
with
75 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
groups: | ||
- id: oci.manifest | ||
prefix: oci.manifest | ||
type: resource | ||
brief: > | ||
An OCI image manifest. | ||
attributes: | ||
- id: digest | ||
type: string | ||
brief: > | ||
The digest of the OCI image manifest. For container images specifically is the | ||
digest by which the container image is known. | ||
note: > | ||
Follows | ||
[OCI Image Manifest Specification](https://github.com/opencontainers/image-spec/blob/main/manifest.md), | ||
and specifically the | ||
[Digest property](https://github.com/opencontainers/image-spec/blob/main/descriptor.md#digests). | ||
An example can be found in | ||
[Example Image Manifest](https://docs.docker.com/registry/spec/manifest-v2-2/#example-image-manifest). | ||
examples: [ 'sha256:e4ca62c0d62f3e886e684806dfe9d4e0cda60d54986898173c1083856cfda0f4' ] |