mirror of https://github.com/containers/podman.git
Add podman pod prune
podman system prune would leave pods be, and not prune them if they were stopped. Fix this by adding a `podman pod prune` command that prunes stopped pods similarly to containers. Signed-off-by: Peter Hunt <pehunt@redhat.com>
This commit is contained in:
parent
a2e9626d92
commit
0b34b4a59c
|
|
@ -159,6 +159,11 @@ type PruneContainersValues struct {
|
||||||
Force bool
|
Force bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type PrunePodsValues struct {
|
||||||
|
PodmanCommand
|
||||||
|
Force bool
|
||||||
|
}
|
||||||
|
|
||||||
type ImportValues struct {
|
type ImportValues struct {
|
||||||
PodmanCommand
|
PodmanCommand
|
||||||
Change []string
|
Change []string
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ var podSubCommands = []*cobra.Command{
|
||||||
_podInspectCommand,
|
_podInspectCommand,
|
||||||
_podKillCommand,
|
_podKillCommand,
|
||||||
_podPauseCommand,
|
_podPauseCommand,
|
||||||
|
_prunePodsCommand,
|
||||||
_podPsCommand,
|
_podPsCommand,
|
||||||
_podRestartCommand,
|
_podRestartCommand,
|
||||||
_podRmCommand,
|
_podRmCommand,
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,91 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/containers/libpod/cmd/podman/cliconfig"
|
||||||
|
"github.com/containers/libpod/cmd/podman/shared"
|
||||||
|
"github.com/containers/libpod/libpod"
|
||||||
|
"github.com/containers/libpod/pkg/adapter"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
prunePodsCommand cliconfig.PrunePodsValues
|
||||||
|
prunePodsDescription = `
|
||||||
|
podman pod prune
|
||||||
|
|
||||||
|
Removes all exited pods
|
||||||
|
`
|
||||||
|
_prunePodsCommand = &cobra.Command{
|
||||||
|
Use: "prune",
|
||||||
|
Args: noSubArgs,
|
||||||
|
Short: "Remove all stopped pods",
|
||||||
|
Long: prunePodsDescription,
|
||||||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
prunePodsCommand.InputArgs = args
|
||||||
|
prunePodsCommand.GlobalFlags = MainGlobalOpts
|
||||||
|
return prunePodsCmd(&prunePodsCommand)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
prunePodsCommand.Command = _prunePodsCommand
|
||||||
|
prunePodsCommand.SetHelpTemplate(HelpTemplate())
|
||||||
|
prunePodsCommand.SetUsageTemplate(UsageTemplate())
|
||||||
|
flags := prunePodsCommand.Flags()
|
||||||
|
flags.BoolVarP(&prunePodsCommand.Force, "force", "f", false, "Force removal of a running pods. The default is false")
|
||||||
|
}
|
||||||
|
|
||||||
|
func prunePods(runtime *adapter.LocalRuntime, ctx context.Context, maxWorkers int, force bool) error {
|
||||||
|
var deleteFuncs []shared.ParallelWorkerInput
|
||||||
|
|
||||||
|
filter := func(p *libpod.Pod) bool {
|
||||||
|
state, err := shared.GetPodStatus(p)
|
||||||
|
// pod states should be the same
|
||||||
|
if state == shared.PodStateStopped || (state == shared.PodStateExited && err == nil) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
delPods, err := runtime.Pods(filter)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if len(delPods) < 1 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
for _, pod := range delPods {
|
||||||
|
p := pod
|
||||||
|
f := func() error {
|
||||||
|
return runtime.RemovePod(ctx, p, force, force)
|
||||||
|
}
|
||||||
|
|
||||||
|
deleteFuncs = append(deleteFuncs, shared.ParallelWorkerInput{
|
||||||
|
ContainerID: p.ID(),
|
||||||
|
ParallelFunc: f,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// Run the parallel funcs
|
||||||
|
deleteErrors, errCount := shared.ParallelExecuteWorkerPool(maxWorkers, deleteFuncs)
|
||||||
|
return printParallelOutput(deleteErrors, errCount)
|
||||||
|
}
|
||||||
|
|
||||||
|
func prunePodsCmd(c *cliconfig.PrunePodsValues) error {
|
||||||
|
runtime, err := adapter.GetRuntime(&c.PodmanCommand)
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrapf(err, "could not get runtime")
|
||||||
|
}
|
||||||
|
defer runtime.Shutdown(false)
|
||||||
|
|
||||||
|
maxWorkers := shared.Parallelize("rm")
|
||||||
|
if c.GlobalIsSet("max-workers") {
|
||||||
|
maxWorkers = c.GlobalFlags.MaxWorks
|
||||||
|
}
|
||||||
|
logrus.Debugf("Setting maximum workers to %d", maxWorkers)
|
||||||
|
|
||||||
|
return prunePods(runtime, getContext(), maxWorkers, c.Bool("force"))
|
||||||
|
}
|
||||||
|
|
@ -10,12 +10,12 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
stopped = "Stopped"
|
PodStateStopped = "Stopped"
|
||||||
running = "Running"
|
PodStateRunning = "Running"
|
||||||
paused = "Paused"
|
PodStatePaused = "Paused"
|
||||||
exited = "Exited"
|
PodStateExited = "Exited"
|
||||||
errored = "Error"
|
PodStateErrored = "Error"
|
||||||
created = "Created"
|
PodStateCreated = "Created"
|
||||||
)
|
)
|
||||||
|
|
||||||
// GetPodStatus determines the status of the pod based on the
|
// GetPodStatus determines the status of the pod based on the
|
||||||
|
|
@ -24,7 +24,7 @@ const (
|
||||||
func GetPodStatus(pod *libpod.Pod) (string, error) {
|
func GetPodStatus(pod *libpod.Pod) (string, error) {
|
||||||
ctrStatuses, err := pod.Status()
|
ctrStatuses, err := pod.Status()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errored, err
|
return PodStateErrored, err
|
||||||
}
|
}
|
||||||
return CreatePodStatusResults(ctrStatuses)
|
return CreatePodStatusResults(ctrStatuses)
|
||||||
}
|
}
|
||||||
|
|
@ -32,44 +32,44 @@ func GetPodStatus(pod *libpod.Pod) (string, error) {
|
||||||
func CreatePodStatusResults(ctrStatuses map[string]libpod.ContainerStatus) (string, error) {
|
func CreatePodStatusResults(ctrStatuses map[string]libpod.ContainerStatus) (string, error) {
|
||||||
ctrNum := len(ctrStatuses)
|
ctrNum := len(ctrStatuses)
|
||||||
if ctrNum == 0 {
|
if ctrNum == 0 {
|
||||||
return created, nil
|
return PodStateCreated, nil
|
||||||
}
|
}
|
||||||
statuses := map[string]int{
|
statuses := map[string]int{
|
||||||
stopped: 0,
|
PodStateStopped: 0,
|
||||||
running: 0,
|
PodStateRunning: 0,
|
||||||
paused: 0,
|
PodStatePaused: 0,
|
||||||
created: 0,
|
PodStateCreated: 0,
|
||||||
errored: 0,
|
PodStateErrored: 0,
|
||||||
}
|
}
|
||||||
for _, ctrStatus := range ctrStatuses {
|
for _, ctrStatus := range ctrStatuses {
|
||||||
switch ctrStatus {
|
switch ctrStatus {
|
||||||
case libpod.ContainerStateExited:
|
case libpod.ContainerStateExited:
|
||||||
fallthrough
|
fallthrough
|
||||||
case libpod.ContainerStateStopped:
|
case libpod.ContainerStateStopped:
|
||||||
statuses[stopped]++
|
statuses[PodStateStopped]++
|
||||||
case libpod.ContainerStateRunning:
|
case libpod.ContainerStateRunning:
|
||||||
statuses[running]++
|
statuses[PodStateRunning]++
|
||||||
case libpod.ContainerStatePaused:
|
case libpod.ContainerStatePaused:
|
||||||
statuses[paused]++
|
statuses[PodStatePaused]++
|
||||||
case libpod.ContainerStateCreated, libpod.ContainerStateConfigured:
|
case libpod.ContainerStateCreated, libpod.ContainerStateConfigured:
|
||||||
statuses[created]++
|
statuses[PodStateCreated]++
|
||||||
default:
|
default:
|
||||||
statuses[errored]++
|
statuses[PodStateErrored]++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if statuses[running] > 0 {
|
if statuses[PodStateRunning] > 0 {
|
||||||
return running, nil
|
return PodStateRunning, nil
|
||||||
} else if statuses[paused] == ctrNum {
|
} else if statuses[PodStatePaused] == ctrNum {
|
||||||
return paused, nil
|
return PodStatePaused, nil
|
||||||
} else if statuses[stopped] == ctrNum {
|
} else if statuses[PodStateStopped] == ctrNum {
|
||||||
return exited, nil
|
return PodStateExited, nil
|
||||||
} else if statuses[stopped] > 0 {
|
} else if statuses[PodStateStopped] > 0 {
|
||||||
return stopped, nil
|
return PodStateStopped, nil
|
||||||
} else if statuses[errored] > 0 {
|
} else if statuses[PodStateErrored] > 0 {
|
||||||
return errored, nil
|
return PodStateErrored, nil
|
||||||
}
|
}
|
||||||
return created, nil
|
return PodStateCreated, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetNamespaceOptions transforms a slice of kernel namespaces
|
// GetNamespaceOptions transforms a slice of kernel namespaces
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,7 @@ func pruneSystemCmd(c *cliconfig.SystemPruneValues) error {
|
||||||
fmt.Printf(`
|
fmt.Printf(`
|
||||||
WARNING! This will remove:
|
WARNING! This will remove:
|
||||||
- all stopped containers%s
|
- all stopped containers%s
|
||||||
|
- all stopped pods
|
||||||
- all dangling images
|
- all dangling images
|
||||||
- all build cache
|
- all build cache
|
||||||
Are you sure you want to continue? [y/N] `, volumeString)
|
Are you sure you want to continue? [y/N] `, volumeString)
|
||||||
|
|
@ -77,9 +78,17 @@ Are you sure you want to continue? [y/N] `, volumeString)
|
||||||
}
|
}
|
||||||
defer runtime.Shutdown(false)
|
defer runtime.Shutdown(false)
|
||||||
|
|
||||||
|
rmWorkers := shared.Parallelize("rm")
|
||||||
ctx := getContext()
|
ctx := getContext()
|
||||||
fmt.Println("Deleted Containers")
|
fmt.Println("Deleted Containers")
|
||||||
lasterr := pruneContainers(runtime, ctx, shared.Parallelize("rm"), false, false)
|
lasterr := pruneContainers(runtime, ctx, rmWorkers, false, false)
|
||||||
|
fmt.Println("Deleted Pods")
|
||||||
|
if err := prunePods(runtime, ctx, rmWorkers, true); err != nil {
|
||||||
|
if lasterr != nil {
|
||||||
|
logrus.Errorf("%q", lasterr)
|
||||||
|
}
|
||||||
|
lasterr = err
|
||||||
|
}
|
||||||
if c.Bool("volumes") {
|
if c.Bool("volumes") {
|
||||||
fmt.Println("Deleted Volumes")
|
fmt.Println("Deleted Volumes")
|
||||||
err := volumePrune(runtime, getContext())
|
err := volumePrune(runtime, getContext())
|
||||||
|
|
|
||||||
|
|
@ -2740,6 +2740,22 @@ _podman_pod_ps() {
|
||||||
__podman_pod_ps
|
__podman_pod_ps
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_podman_pod_prune() {
|
||||||
|
local options_with_args="
|
||||||
|
"
|
||||||
|
|
||||||
|
local boolean_options="
|
||||||
|
-f
|
||||||
|
-h
|
||||||
|
--help
|
||||||
|
"
|
||||||
|
case "$cur" in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur"))
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
_podman_pod_restart() {
|
_podman_pod_restart() {
|
||||||
local options_with_args="
|
local options_with_args="
|
||||||
"
|
"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
% PODMAN(1) Podman Man Pages
|
% podman-container-prune (1)
|
||||||
% Brent Baude
|
% Brent Baude
|
||||||
% December 2018
|
% December 2018
|
||||||
# NAME
|
# NAME
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
% % podman-pod-prune (1)
|
||||||
|
% Peter Hunt
|
||||||
|
% April 2019
|
||||||
|
# NAME
|
||||||
|
podman-pod-prune - Remove all stopped pods
|
||||||
|
|
||||||
|
# SYNOPSIS
|
||||||
|
**podman pod prune** [*-h*|*--help*]
|
||||||
|
|
||||||
|
# DESCRIPTION
|
||||||
|
**podman pod prune** removes all stopped pods from local storage.
|
||||||
|
|
||||||
|
## Examples ##
|
||||||
|
|
||||||
|
Remove all stopped pods from local storage
|
||||||
|
```
|
||||||
|
$ sudo podman pod prune
|
||||||
|
22b8813332948064b6566370088c5e0230eeaf15a58b1c5646859fd9fc364fe7
|
||||||
|
2afb26869fe5beab979c234afb75c7506063cd4655b1a73557c9d583ff1aebe9
|
||||||
|
49161ad2a722cf18722f0e17199a9e840703a17d1158cdeda502b6d54080f674
|
||||||
|
5ca429f37fb83a9f54eea89e3a9102b7780a6e6ae5f132db0672da551d862c4a
|
||||||
|
6bb06573787efb8b0675bc88ebf8361f1a56d3ac7922d1a6436d8f59ffd955f1
|
||||||
|
```
|
||||||
|
|
||||||
|
## SEE ALSO
|
||||||
|
podman-pod(1), podman-pod-ps(1), podman-pod-rm(1)
|
||||||
|
|
||||||
|
# HISTORY
|
||||||
|
April 2019, Originally compiled by Peter Hunt (pehunt at redhat dot com)
|
||||||
|
|
@ -11,21 +11,22 @@ podman pod is a set of subcommands that manage pods, or groups of containers.
|
||||||
|
|
||||||
## SUBCOMMANDS
|
## SUBCOMMANDS
|
||||||
|
|
||||||
| Command | Man Page | Description |
|
| Command | Man Page | Description |
|
||||||
| ------- | ------------------------------------------------- | ------------------------------------------------------------------------------ |
|
| ------- | -------------------------------------------------------- | ------------------------------------------------------------------------------ |
|
||||||
| create | [podman-pod-create(1)](podman-pod-create.1.md) | Create a new pod. |
|
| create | [podman-pod-create(1)](podman-pod-create.1.md) | Create a new pod. |
|
||||||
| exists | [podman-pod-exists(1)](podman-pod-exists.1.md) | Check if a pod exists in local storage. |
|
| exists | [podman-pod-exists(1)](podman-pod-exists.1.md) | Check if a pod exists in local storage. |
|
||||||
| inspect | [podman-pod-inspect(1)](podman-pod-inspect.1.md) | Displays information describing a pod. |
|
| inspect | [podman-pod-inspect(1)](podman-pod-inspect.1.md) | Displays information describing a pod. |
|
||||||
| kill | [podman-pod-kill(1)](podman-pod-kill.1.md) | Kill the main process of each container in pod. |
|
| kill | [podman-pod-kill(1)](podman-pod-kill.1.md) | Kill the main process of each container in pod. |
|
||||||
| pause | [podman-pod-pause(1)](podman-pod-pause.1.md) | Pause one or more pods. |
|
| pause | [podman-pod-pause(1)](podman-pod-pause.1.md) | Pause one or more pods. |
|
||||||
| ps | [podman-pod-ps(1)](podman-pod-ps.1.md) | Prints out information about pods. |
|
| prune | [podman-container-prune(1)](podman-container-prune.1.md) | Remove all stopped containers from local storage. |
|
||||||
| restart | [podman-pod-restart(1)](podman-pod-restart.1.md) | Restart one or more pods. |
|
| ps | [podman-pod-ps(1)](podman-pod-ps.1.md) | Prints out information about pods. |
|
||||||
| rm | [podman-pod-rm(1)](podman-pod-rm.1.md) | Remove one or more pods. |
|
| restart | [podman-pod-restart(1)](podman-pod-restart.1.md) | Restart one or more pods. |
|
||||||
| start | [podman-pod-start(1)](podman-pod-start.1.md) | Start one or more pods. |
|
| rm | [podman-pod-rm(1)](podman-pod-rm.1.md) | Remove one or more pods. |
|
||||||
| stats | [podman-pod-stats(1)](podman-pod-stats.1.md) | Display live stream resource usage stats for containers in one or more pods. |
|
| start | [podman-pod-start(1)](podman-pod-start.1.md) | Start one or more pods. |
|
||||||
| stop | [podman-pod-stop(1)](podman-pod-stop.1.md) | Stop one or more pods. |
|
| stats | [podman-pod-stats(1)](podman-pod-stats.1.md) | Display live stream resource usage stats for containers in one or more pods. |
|
||||||
| top | [podman-pod-top(1)](podman-pod-top.1.md) | Display the running processes of containers in a pod. |
|
| stop | [podman-pod-stop(1)](podman-pod-stop.1.md) | Stop one or more pods. |
|
||||||
| unpause | [podman-pod-unpause(1)](podman-pod-unpause.1.md) | Unpause one or more pods. |
|
| top | [podman-pod-top(1)](podman-pod-top.1.md) | Display the running processes of containers in a pod. |
|
||||||
|
| unpause | [podman-pod-unpause(1)](podman-pod-unpause.1.md) | Unpause one or more pods. |
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
podman(1)
|
podman(1)
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ podman\-system\-prune - Remove all unused container, image and volume data
|
||||||
[**-volumes**|**--v**]
|
[**-volumes**|**--v**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman system prune** removes all unused containers, (both dangling and unreferenced) from local storage and optionally, volumes.
|
**podman system prune** removes all unused containers (both dangling and unreferenced), pods and optionally, volumes from local storage.
|
||||||
|
|
||||||
With the `all` option, you can delete all unused images. Unused images are dangling images as well as any image that does not have any containers based on it.
|
With the `all` option, you can delete all unused images. Unused images are dangling images as well as any image that does not have any containers based on it.
|
||||||
|
|
||||||
|
|
@ -31,7 +31,7 @@ Do not prompt for confirmation
|
||||||
Prune volumes not used by at least one container
|
Prune volumes not used by at least one container
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
podman(1), podman-image-prune(1), podman-container-prune(1), podman-volume-prune(1)
|
podman(1), podman-image-prune(1), podman-container-prune(1), podman-pod-prune(1), podman-volume-prune(1)
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
February 2019, Originally compiled by Dan Walsh (dwalsh at redhat dot com)
|
February 2019, Originally compiled by Dan Walsh (dwalsh at redhat dot com)
|
||||||
|
|
|
||||||
|
|
@ -527,6 +527,24 @@ func (r *LocalRuntime) RemoveContainer(ctx context.Context, c *libpod.Container,
|
||||||
return libpod.ErrNotImplemented
|
return libpod.ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Pods retrieves all pods
|
||||||
|
// Filters can be provided which will determine which pods are included in the
|
||||||
|
// output. Multiple filters are handled by ANDing their output, so only pods
|
||||||
|
// matching all filters are returned
|
||||||
|
func (r *LocalRuntime) Pods(filters ...libpod.PodFilter) ([]*libpod.Pod, error) {
|
||||||
|
return nil, libpod.ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
|
// RemovePod removes a pod
|
||||||
|
// If removeCtrs is specified, containers will be removed
|
||||||
|
// Otherwise, a pod that is not empty will return an error and not be removed
|
||||||
|
// If force is specified with removeCtrs, all containers will be stopped before
|
||||||
|
// being removed
|
||||||
|
// Otherwise, the pod will not be removed if any containers are running
|
||||||
|
func (r *LocalRuntime) RemovePod(ctx context.Context, p *libpod.Pod, removeCtrs, force bool) error {
|
||||||
|
return libpod.ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
// CreateVolume creates a volume over a varlink connection for the remote client
|
// CreateVolume creates a volume over a varlink connection for the remote client
|
||||||
func (r *LocalRuntime) CreateVolume(ctx context.Context, c *cliconfig.VolumeCreateValues, labels, opts map[string]string) (string, error) {
|
func (r *LocalRuntime) CreateVolume(ctx context.Context, c *cliconfig.VolumeCreateValues, labels, opts map[string]string) (string, error) {
|
||||||
cvOpts := iopodman.VolumeCreateOpts{
|
cvOpts := iopodman.VolumeCreateOpts{
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ LABEL RUN podman --version
|
||||||
RUN apk update
|
RUN apk update
|
||||||
RUN apk add bash`
|
RUN apk add bash`
|
||||||
|
|
||||||
var _ = Describe("Podman rm", func() {
|
var _ = Describe("Podman prune", func() {
|
||||||
var (
|
var (
|
||||||
tempdir string
|
tempdir string
|
||||||
err error
|
err error
|
||||||
|
|
@ -101,4 +101,37 @@ var _ = Describe("Podman rm", func() {
|
||||||
Expect(len(images.OutputToStringArray())).To(Equal(0))
|
Expect(len(images.OutputToStringArray())).To(Equal(0))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("podman system prune pods", func() {
|
||||||
|
SkipIfRemote()
|
||||||
|
|
||||||
|
session := podmanTest.Podman([]string{"pod", "create"})
|
||||||
|
session.WaitWithDefaultTimeout()
|
||||||
|
Expect(session.ExitCode()).To(Equal(0))
|
||||||
|
|
||||||
|
session = podmanTest.Podman([]string{"pod", "create"})
|
||||||
|
session.WaitWithDefaultTimeout()
|
||||||
|
Expect(session.ExitCode()).To(Equal(0))
|
||||||
|
|
||||||
|
session = podmanTest.Podman([]string{"pod", "start", "-l"})
|
||||||
|
session.WaitWithDefaultTimeout()
|
||||||
|
Expect(session.ExitCode()).To(Equal(0))
|
||||||
|
|
||||||
|
session = podmanTest.Podman([]string{"pod", "stop", "-l"})
|
||||||
|
session.WaitWithDefaultTimeout()
|
||||||
|
Expect(session.ExitCode()).To(Equal(0))
|
||||||
|
|
||||||
|
pods := podmanTest.Podman([]string{"pod", "ps"})
|
||||||
|
pods.WaitWithDefaultTimeout()
|
||||||
|
Expect(pods.ExitCode()).To(Equal(0))
|
||||||
|
Expect(len(pods.OutputToStringArray())).To(Equal(3))
|
||||||
|
|
||||||
|
prune := podmanTest.Podman([]string{"system", "prune", "-f"})
|
||||||
|
prune.WaitWithDefaultTimeout()
|
||||||
|
Expect(prune.ExitCode()).To(Equal(0))
|
||||||
|
|
||||||
|
pods = podmanTest.Podman([]string{"pod", "ps"})
|
||||||
|
pods.WaitWithDefaultTimeout()
|
||||||
|
Expect(pods.ExitCode()).To(Equal(0))
|
||||||
|
Expect(len(pods.OutputToStringArray())).To(Equal(2))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue