mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
Allow automatic generation for shell completion scripts with the internal cobra functions (requires v1.0.0+). This should replace the handwritten completion scripts and even adds support for fish. With this approach it is less likley that completions and code are out of sync. We can now create the scripts with - podman completion bash - podman completion zsh - podman completion fish To test the completion run: source <(podman completion bash) The same works for podman-remote and podman --remote and it will complete your remote containers/images with the correct endpoints values from --url/--connection. The completion logic is written in go and provided by the cobra library. The completion functions lives in `cmd/podman/completion/completion.go`. The unit test at cmd/podman/shell_completion_test.go checks if each command and flag has an autocompletion function set. This prevents that commands and flags have no shell completion set. This commit does not replace the current autocompletion scripts. Closes #6440 Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
71 lines
2.1 KiB
Go
71 lines
2.1 KiB
Go
package images
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/containers/podman/v2/cmd/podman/common"
|
|
"github.com/containers/podman/v2/cmd/podman/registry"
|
|
"github.com/containers/podman/v2/pkg/domain/entities"
|
|
"github.com/containers/podman/v2/pkg/errorhandling"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
var (
|
|
rmDescription = "Removes one or more previously pulled or locally created images."
|
|
rmCmd = &cobra.Command{
|
|
Use: "rm [options] IMAGE [IMAGE...]",
|
|
Short: "Removes one or more images from local storage",
|
|
Long: rmDescription,
|
|
RunE: rm,
|
|
ValidArgsFunction: common.AutocompleteImages,
|
|
Example: `podman image rm imageID
|
|
podman image rm --force alpine
|
|
podman image rm c4dfb1609ee2 93fd78260bd1 c0ed59d05ff7`,
|
|
}
|
|
|
|
imageOpts = entities.ImageRemoveOptions{}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
|
|
Command: rmCmd,
|
|
Parent: imageCmd,
|
|
})
|
|
|
|
imageRemoveFlagSet(rmCmd.Flags())
|
|
}
|
|
|
|
func imageRemoveFlagSet(flags *pflag.FlagSet) {
|
|
flags.BoolVarP(&imageOpts.All, "all", "a", false, "Remove all images")
|
|
flags.BoolVarP(&imageOpts.Force, "force", "f", false, "Force Removal of the image")
|
|
}
|
|
|
|
func rm(cmd *cobra.Command, args []string) error {
|
|
if len(args) < 1 && !imageOpts.All {
|
|
return errors.Errorf("image name or ID must be specified")
|
|
}
|
|
if len(args) > 0 && imageOpts.All {
|
|
return errors.Errorf("when using the --all switch, you may not pass any images names or IDs")
|
|
}
|
|
|
|
// Note: certain image-removal errors are non-fatal. Hence, the report
|
|
// might be set even if err != nil.
|
|
report, rmErrors := registry.ImageEngine().Remove(registry.GetContext(), args, imageOpts)
|
|
if report != nil {
|
|
for _, u := range report.Untagged {
|
|
fmt.Println("Untagged: " + u)
|
|
}
|
|
for _, d := range report.Deleted {
|
|
// Make sure an image was deleted (and not just untagged); else print it
|
|
if len(d) > 0 {
|
|
fmt.Println("Deleted: " + d)
|
|
}
|
|
}
|
|
registry.SetExitCode(report.ExitCode)
|
|
}
|
|
|
|
return errorhandling.JoinErrors(rmErrors)
|
|
}
|