summaryrefslogtreecommitdiff
path: root/cmd/podman/pod.go
blob: b4c6ca6880ca0e6509c814bc801f89bbadd1e794 (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
36
37
package main

import (
	"github.com/containers/libpod/cmd/podman/cliconfig"
	"github.com/spf13/cobra"
)

var (
	podDescription = `Manage container pods.

Pods are a group of one or more containers sharing the same network, pid and ipc namespaces.`
)
var podCommand = cliconfig.PodmanCommand{
	Command: &cobra.Command{
		Use:   "pod",
		Short: "Manage pods",
		Long:  podDescription,
	},
}

//podSubCommands are implemented both in local and remote clients
var podSubCommands = []*cobra.Command{
	_podCreateCommand,
	_podExistsCommand,
	_podInspectCommand,
	_podKillCommand,
	_podPsCommand,
	_podRmCommand,
	_podStartCommand,
	_podStopCommand,
}

func init() {
	podCommand.AddCommand(podSubCommands...)
	podCommand.AddCommand(getPodSubCommands()...)
	podCommand.SetUsageTemplate(UsageTemplate())
}