summaryrefslogtreecommitdiff
path: root/pkg/specgen/generate/container_create.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-09 04:48:49 -0400
committerGitHub <noreply@github.com>2022-05-09 04:48:49 -0400
commitccb6211c7beff29ba0d0d374665e1b24262c276f (patch)
tree740b480f8610df79055a2b18ca077aaa1bbfa7ac /pkg/specgen/generate/container_create.go
parenta0ecb8675d1c45f083a70a6b3faaebd22abe5417 (diff)
parentb58e7e7f11f99b22d68cbbf28c8d52ff10be482e (diff)
downloadpodman-ccb6211c7beff29ba0d0d374665e1b24262c276f.tar.gz
podman-ccb6211c7beff29ba0d0d374665e1b24262c276f.tar.bz2
podman-ccb6211c7beff29ba0d0d374665e1b24262c276f.zip
Merge pull request #14121 from cdoern/kube
play kube log tag handling
Diffstat (limited to 'pkg/specgen/generate/container_create.go')
-rw-r--r--pkg/specgen/generate/container_create.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/specgen/generate/container_create.go b/pkg/specgen/generate/container_create.go
index 19a2b702c..04e24d625 100644
--- a/pkg/specgen/generate/container_create.go
+++ b/pkg/specgen/generate/container_create.go
@@ -425,7 +425,6 @@ func createContainerOptions(rt *libpod.Runtime, s *specgen.SpecGenerator, pod *l
options = append(options, libpod.WithMaxLogSize(s.LogConfiguration.Size))
}
if len(s.LogConfiguration.Options) > 0 && s.LogConfiguration.Options["tag"] != "" {
- // Note: I'm really guessing here.
options = append(options, libpod.WithLogTag(s.LogConfiguration.Options["tag"]))
}