summaryrefslogtreecommitdiff
path: root/cmd/podman/pod.go
blob: a30361134ab90040c3b618229028f49526d854b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package main

import (
	"github.com/urfave/cli"
)

var (
	podDescription = `Manage container pods.

Pods are a group of one or more containers sharing the same network, pid and ipc namespaces.
`
	podSubCommands = []cli.Command{
		podCreateCommand,
		podExistsCommand,
		podInspectCommand,
		podKillCommand,
		podPauseCommand,
		podPsCommand,
		podRestartCommand,
		podRmCommand,
		podStartCommand,
		podStatsCommand,
		podStopCommand,
		podTopCommand,
		podUnpauseCommand,
	}
	podCommand = cli.Command{
		Name:                   "pod",
		Usage:                  "Manage pods",
		Description:            podDescription,
		UseShortOptionHandling: true,
		Subcommands:            podSubCommands,
		OnUsageError:           usageErrorHandler,
	}
)