mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-11 11:25:45 +00:00
Automated for .go files via gomove [1]: `gomove github.com/containers/podman/v3 github.com/containers/podman/v4` Remaining files via vgrep [2]: `vgrep github.com/containers/podman/v3` [1] https://github.com/KSubedi/gomove [2] https://github.com/vrothberg/vgrep Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
44 lines
1.4 KiB
Go
44 lines
1.4 KiB
Go
package manifest
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/containers/podman/v4/cmd/podman/common"
|
|
"github.com/containers/podman/v4/cmd/podman/registry"
|
|
"github.com/containers/podman/v4/pkg/domain/entities"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
manifestCreateOpts = entities.ManifestCreateOptions{}
|
|
createCmd = &cobra.Command{
|
|
Use: "create [options] LIST [IMAGE...]",
|
|
Short: "Create manifest list or image index",
|
|
Long: "Creates manifest lists or image indexes.",
|
|
RunE: create,
|
|
ValidArgsFunction: common.AutocompleteImages,
|
|
Example: `podman manifest create mylist:v1.11
|
|
podman manifest create mylist:v1.11 arch-specific-image-to-add
|
|
podman manifest create mylist:v1.11 arch-specific-image-to-add another-arch-specific-image-to-add
|
|
podman manifest create --all mylist:v1.11 transport:tagged-image-to-add`,
|
|
Args: cobra.MinimumNArgs(1),
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: createCmd,
|
|
Parent: manifestCmd,
|
|
})
|
|
flags := createCmd.Flags()
|
|
flags.BoolVar(&manifestCreateOpts.All, "all", false, "add all of the lists' images if the images to add are lists")
|
|
}
|
|
|
|
func create(cmd *cobra.Command, args []string) error {
|
|
imageID, err := registry.ImageEngine().ManifestCreate(registry.Context(), args[0], args[1:], manifestCreateOpts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Printf("%s\n", imageID)
|
|
return nil
|
|
}
|