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
The original extractArchive implementations in docker-archive/layer.ts and kaniko-archive/layer.ts used gunzip-maybe, which handles optional gzip. The new consolidated createExtractArchive explicitly pipes createReadStream through gunzip() (line 120), which will fail or throw errors if the outer tar archive is not gzipped. While Docker and Kaniko tarballs are often compressed, uncompressed tar archives are valid and were previously supported by the 'maybe' variant.
The consolidation of ExtractedLayersAndManifest (line 59) uses TarArchiveManifest | OciArchiveManifest. However, TarArchiveManifest uses a capitalized Config property (line 47), while OciArchiveManifest uses a lowercase config object with a digest (seen in cross-file context). The ArchiveExtractor in lib/extractor/index.ts calls getImageIdFromManifest(archiveContent.manifest), which will fail for OCI archives if it expects the TarArchiveManifest structure, or vice-versa, as the factory logic in generic-archive-extractor.ts only handles the TarArchiveManifest shape.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Where should the reviewer start?
You can take a look at the generic extractor here.
How should this be manually tested?
You can test by running a scan via cli for a Kaniko or Docker Archive.
What are the relevant tickets?
Questions?
There may be a better method for testing manually, open to ideas!