summaryrefslogtreecommitdiff
path: root/pkg/domain/entities
diff options
context:
space:
mode:
authorQi Wang <qiwan@redhat.com>2020-08-21 13:56:50 -0400
committerQi Wang <qiwan@redhat.com>2020-09-04 15:04:36 -0400
commit6b0864434ad2780160c06ba607c76b0325b60175 (patch)
tree6d352ca8204e5f7c5e2ff1266248ff35d1cb9a19 /pkg/domain/entities
parentfa487a65220951e84779f200f48780666b4b9209 (diff)
downloadpodman-6b0864434ad2780160c06ba607c76b0325b60175.tar.gz
podman-6b0864434ad2780160c06ba607c76b0325b60175.tar.bz2
podman-6b0864434ad2780160c06ba607c76b0325b60175.zip
Add global options --runtime-flags
Add global options --runtime-flags for setting options to container runtime. Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r--pkg/domain/entities/engine.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine.go b/pkg/domain/entities/engine.go
index 6776d09e9..f23d964e5 100644
--- a/pkg/domain/entities/engine.go
+++ b/pkg/domain/entities/engine.go
@@ -46,6 +46,7 @@ type PodmanConfig struct {
RegistriesConf string // allows for specifying a custom registries.conf
Remote bool // Connection to Podman API Service will use RESTful API
RuntimePath string // --runtime flag will set Engine.RuntimePath
+ RuntimeFlags []string // global flags for the container runtime
Span opentracing.Span // tracing object
SpanCloser io.Closer // Close() for tracing object
SpanCtx context.Context // context to use when tracing