Merge pull request #27182 from skyraider256526/main

feat: add `--format` flag to artifact inspect
This commit is contained in:
openshift-merge-bot[bot]
2025-10-22 13:22:09 +00:00
committed by GitHub
5 changed files with 122 additions and 17 deletions

View File

@@ -4,7 +4,7 @@
podman\-artifact\-inspect - Inspect an OCI artifact
## SYNOPSIS
**podman artifact inspect** [*name*] ...
**podman artifact inspect** *name*
## DESCRIPTION
@@ -20,15 +20,62 @@ annotation using RFC3339Nano format, showing when the artifact was initially cre
## OPTIONS
#### **--help**
#### **--format**, **-f**=*format*
Print usage statement.
Format the output using the given Go template.
The keys of the returned JSON can be used as the values for the --format flag (see examples below).
Valid placeholders for the Go template are listed below:
| **Placeholder** | **Description** |
| ------------------------ | -------------------------------------------------- |
| .Artifact ... | Artifact details (nested struct) |
| .Digest | Artifact digest (sha256:+64-char hash) |
| .Manifest ... | Artifact manifest details (struct) |
| .Name | Artifact name (string) |
| .TotalSizeBytes | Total Size of the artifact in bytes |
#### **--help**, **-h**
Print usage statement
## EXAMPLES
Inspect an OCI image in the local store.
```
```shell
$ podman artifact inspect quay.io/myartifact/myml:latest
{
"Manifest": {
"schemaVersion": 2,
"mediaType": "application/vnd.oci.image.manifest.v1+json",
"config": {
"mediaType": "application/vnd.oci.empty.v1+json",
"digest": "sha256:44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a",
"size": 2,
"data": "e30="
},
"layers": [
{
"mediaType": "text/plain; charset=utf-8",
"digest": "sha256:f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2",
"size": 5,
"annotations": {
"org.opencontainers.image.title": "foobar.txt"
}
}
]
},
"Name": "quay.io/myartifact/mytxt:latest",
"Digest": "sha256:6c28fa07a5b0a1cee29862c1f6ea38a66df982495b14da2c052427eb628ed8c6"
}
```
Inspect artifact digest for the specified artifact:
```shell
$ podman artifact inspect quay.io/myartifact/mytxt:latest --format {{.Digest}}
sha256:6c28fa07a5b0a1cee29862c1f6ea38a66df982495b14da2c052427eb628ed8c6
```
## SEE ALSO