-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: only pull configuration in root (#684)
Resolves #682 Signed-off-by: Billy Zha <[email protected]>
- Loading branch information
Showing
5 changed files
with
98 additions
and
31 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,61 @@ | ||
/* | ||
Copyright The ORAS Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package graph | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
|
||
ocispec "github.com/opencontainers/image-spec/specs-go/v1" | ||
"oras.land/oras-go/v2/content" | ||
"oras.land/oras/internal/docker" | ||
) | ||
|
||
// Successors returns the nodes directly pointed by the current node, picking | ||
// out subject and config descriptor if applicable. | ||
// Returning nil when no subject and config found. | ||
func Successors(ctx context.Context, fetcher content.Fetcher, node ocispec.Descriptor) (nodes []ocispec.Descriptor, subject, config *ocispec.Descriptor, err error) { | ||
switch node.MediaType { | ||
case docker.MediaTypeManifest, ocispec.MediaTypeImageManifest: | ||
var fetched []byte | ||
fetched, err = content.FetchAll(ctx, fetcher, node) | ||
if err != nil { | ||
return | ||
} | ||
var manifest ocispec.Manifest | ||
if err = json.Unmarshal(fetched, &manifest); err != nil { | ||
return | ||
} | ||
nodes = manifest.Layers | ||
subject = manifest.Subject | ||
config = &manifest.Config | ||
case ocispec.MediaTypeArtifactManifest: | ||
var fetched []byte | ||
fetched, err = content.FetchAll(ctx, fetcher, node) | ||
if err != nil { | ||
return | ||
} | ||
var manifest ocispec.Artifact | ||
if err = json.Unmarshal(fetched, &manifest); err != nil { | ||
return | ||
} | ||
nodes = manifest.Blobs | ||
subject = manifest.Subject | ||
default: | ||
nodes, err = content.Successors(ctx, fetcher, node) | ||
} | ||
return | ||
} |
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