diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-03-21 00:31:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-21 00:31:03 +0100 |
commit | 77187daf07281854306f94452ca2bccad6215b7e (patch) | |
tree | 8fe6db845648596c90319463d95193262dd35ddf /pkg/specgen/specgen.go | |
parent | 7a095af92a6a39845b1c362222b23632f3e17001 (diff) | |
parent | cec2e6d706bed601b6f7f9f96cd9933960a3d384 (diff) | |
download | podman-77187daf07281854306f94452ca2bccad6215b7e.tar.gz podman-77187daf07281854306f94452ca2bccad6215b7e.tar.bz2 podman-77187daf07281854306f94452ca2bccad6215b7e.zip |
Merge pull request #5555 from mheon/pod_specgen
Add basic structure of a spec generator for pods
Diffstat (limited to 'pkg/specgen/specgen.go')
-rw-r--r-- | pkg/specgen/specgen.go | 2 |
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"` |