summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/pods.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-10-27 15:24:23 +0000
committerGitHub <noreply@github.com>2021-10-27 15:24:23 +0000
commitd908da51fbe0089074355850e7854e0c9502a35a (patch)
tree2f5cb93d514b0345043a44da9f0a681cbe532ae6 /pkg/domain/entities/pods.go
parent6caf5e3b7c08cb3c5b62ed069e458910321b43b2 (diff)
parentff31f2264da1550be97055865dea639eb0882327 (diff)
downloadpodman-d908da51fbe0089074355850e7854e0c9502a35a.tar.gz
podman-d908da51fbe0089074355850e7854e0c9502a35a.tar.bz2
podman-d908da51fbe0089074355850e7854e0c9502a35a.zip
Merge pull request #12064 from vrothberg/fix-11933
container create: fix --tls-verify parsing
Diffstat (limited to 'pkg/domain/entities/pods.go')
-rw-r--r--pkg/domain/entities/pods.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/domain/entities/pods.go b/pkg/domain/entities/pods.go
index a2f36eaa6..3d8579acf 100644
--- a/pkg/domain/entities/pods.go
+++ b/pkg/domain/entities/pods.go
@@ -5,6 +5,7 @@ import (
"strings"
"time"
+ commonFlag "github.com/containers/common/pkg/flag"
"github.com/containers/podman/v3/libpod/define"
"github.com/containers/podman/v3/pkg/specgen"
"github.com/containers/podman/v3/pkg/util"
@@ -241,7 +242,7 @@ type ContainerCreateOptions struct {
Sysctl []string
Systemd string
Timeout uint
- TLSVerify bool
+ TLSVerify commonFlag.OptionalBool
TmpFS []string
TTY bool
Timezone string