summaryrefslogtreecommitdiff
path: root/pkg/specgen/specgen.go
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2020-03-19 12:10:05 -0400
committerMatthew Heon <mheon@redhat.com>2020-03-20 16:07:46 -0400
commitcec2e6d706bed601b6f7f9f96cd9933960a3d384 (patch)
tree2455362c9f85e73753849a969722c2cad7e5ac7d /pkg/specgen/specgen.go
parent6df1d2043bd3cd2252ea3d737cf542e332106074 (diff)
downloadpodman-cec2e6d706bed601b6f7f9f96cd9933960a3d384.tar.gz
podman-cec2e6d706bed601b6f7f9f96cd9933960a3d384.tar.bz2
podman-cec2e6d706bed601b6f7f9f96cd9933960a3d384.zip
Add basic structure of a spec generator for pods
This will be used for remote creation of pods initially. Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'pkg/specgen/specgen.go')
-rw-r--r--pkg/specgen/specgen.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/specgen/specgen.go b/pkg/specgen/specgen.go
index 7a430652a..b123c1da5 100644
--- a/pkg/specgen/specgen.go
+++ b/pkg/specgen/specgen.go
@@ -53,7 +53,7 @@ type ContainerBasicConfig struct {
Terminal bool `json:"terminal,omitempty"`
// Stdin is whether the container will keep its STDIN open.
Stdin bool `json:"stdin,omitempty"`
- // Labels are key-valid labels that are used to add metadata to
+ // Labels are key-value pairs that are used to add metadata to
// containers.
// Optional.
Labels map[string]string `json:"labels,omitempty"`