You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of the implementation of the export to OCI Layout feature the RFC defines the analyzed.tomlfile will be updated to include the reference format in case of layout is being used.
[image|run-image|previos-image].reference MUST be either:
A digest reference to an image in an OCI registry
The ID of an image in a docker daemon
The path to an image in OCI layout format
We required to translate an image reference with the format [path]@[digest] and map it to an Identifier. Because imgUtil defines the layout.Identifier() implementation the best place to offer this utility method is on imgUtil repository.
Expected behavior
Considering an image identifier with the format [path]@[digest]
Expose a method like:
classDiagram
class layout {
ParseIdentifier(identifier string) (Identifier, error)
}
Loading
The text was updated successfully, but these errors were encountered:
Reason
As part of the implementation of the export to OCI Layout feature the RFC defines the
analyzed.toml
file will be updated to include thereference
format in case of layout is being used.Where
[image|run-image|previos-image].reference
MUST be either:We required to translate an image reference with the format
[path]@[digest]
and map it to an Identifier. Because imgUtil defines thelayout.Identifier()
implementation the best place to offer this utility method is on imgUtil repository.Expected behavior
Considering an image identifier with the format
[path]@[digest]
Expose a method like:
The text was updated successfully, but these errors were encountered: