Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var RootCmd = &cobra.Command{
Use: "manifesto",
Short: "Manage metadata associated with your container images",
Long: `Store, retrieve and list pieces of metadata alongside your container images in the registry.
Metadata is associated with specific images (by hash).
`,
}
RootCmd represents the base command when called without any subcommands
Functions ¶
Types ¶
type ImageMetadataManifesto ¶
type ImageMetadataManifesto struct { ImageDigest string `json:"image_digest"` MetadataManifesto []MetadataManifesto `json:"manifesto"` }
ImageMetadataManifesto associates a piece of manifesto data with a particular image
type MetadataManifesto ¶
MetadataManifesto gives the type of a piece of arbitrary manifesto data, and the digest where it can be found A given image can only have one current piece of data of each type. Example types might include: "seccomp", "approvals", "contact"
type MetadataManifestoList ¶
type MetadataManifestoList struct {
Images []ImageMetadataManifesto `json:"images"`
}
MetadataManifestoList holds all the metadata for a given image repository
Click to show internal directories.
Click to hide internal directories.