aboutsummaryrefslogtreecommitdiff
path: root/pkg/adapter/runtime.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-07-03 00:37:31 +0200
committerGitHub <noreply@github.com>2019-07-03 00:37:31 +0200
commit3fa818a036c4df4987abd2e790d5c9f5259ccfec (patch)
tree6b43a58782e8e73813fcea12dfba498a79f721ff /pkg/adapter/runtime.go
parent55e028a12ee003e057c65e376fe4b723d28ae52e (diff)
parentd0a0a3fbd9ebb2942c761f14fc56f3a470ae1834 (diff)
downloadpodman-3fa818a036c4df4987abd2e790d5c9f5259ccfec.tar.gz
podman-3fa818a036c4df4987abd2e790d5c9f5259ccfec.tar.bz2
podman-3fa818a036c4df4987abd2e790d5c9f5259ccfec.zip
Merge pull request #3465 from baude/nostore
configure runtime without store
Diffstat (limited to 'pkg/adapter/runtime.go')
-rw-r--r--pkg/adapter/runtime.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkg/adapter/runtime.go b/pkg/adapter/runtime.go
index dd77b3a3e..8ef88f36b 100644
--- a/pkg/adapter/runtime.go
+++ b/pkg/adapter/runtime.go
@@ -58,12 +58,26 @@ type Volume struct {
// VolumeFilter is for filtering volumes on the client
type VolumeFilter func(*Volume) bool
+// GetRuntimeNoStore returns a localruntime struct wit an embedded runtime but
+// without a configured storage.
+func GetRuntimeNoStore(ctx context.Context, c *cliconfig.PodmanCommand) (*LocalRuntime, error) {
+ runtime, err := libpodruntime.GetRuntimeNoStore(ctx, c)
+ if err != nil {
+ return nil, err
+ }
+ return getRuntime(runtime)
+}
+
// GetRuntime returns a LocalRuntime struct with the actual runtime embedded in it
func GetRuntime(ctx context.Context, c *cliconfig.PodmanCommand) (*LocalRuntime, error) {
runtime, err := libpodruntime.GetRuntime(ctx, c)
if err != nil {
return nil, err
}
+ return getRuntime(runtime)
+}
+
+func getRuntime(runtime *libpod.Runtime) (*LocalRuntime, error) {
return &LocalRuntime{
Runtime: runtime,
}, nil