summaryrefslogtreecommitdiff
path: root/cmd/podman/pod.go
blob: cf87730d74a523ede435988aadfb4fe61d359c07 (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
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{
	_podRmCommand,
}

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