diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-07-11 13:32:42 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-08-05 14:40:28 -0400 |
commit | c528d7a622267fcee0f38f25c94198b23deed9dd (patch) | |
tree | 5b4f6a4fe723428ee317fbcd6c0588506fac8233 /pkg/spec | |
parent | 58b1b99982cdaad5e0d5eccaf008aa343f8fefd2 (diff) | |
download | podman-c528d7a622267fcee0f38f25c94198b23deed9dd.tar.gz podman-c528d7a622267fcee0f38f25c94198b23deed9dd.tar.bz2 podman-c528d7a622267fcee0f38f25c94198b23deed9dd.zip |
Use file-based eventer for integration tests
This adds several top-level Podman flags for specifying different
events backend types, which are then used in CI. It resolves a
number of serious issues with events-based testing.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'pkg/spec')
-rw-r--r-- | pkg/spec/createconfig.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/spec/createconfig.go b/pkg/spec/createconfig.go index a8413d6c7..eaebf119d 100644 --- a/pkg/spec/createconfig.go +++ b/pkg/spec/createconfig.go @@ -165,6 +165,9 @@ func (c *CreateConfig) createExitCommand(runtime *libpod.Runtime) ([]string, err for _, opt := range config.StorageConfig.GraphDriverOptions { command = append(command, []string{"--storage-opt", opt}...) } + if config.EventsLogger != "" { + command = append(command, []string{"--events-backend", config.EventsLogger}...) + } if c.Syslog { command = append(command, "--syslog", "true") |