aboutsummaryrefslogtreecommitdiff
path: root/pkg/spec/containerconfig.go
blob: 775a2042dc09d238cc861b134183b4555ec8b601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package createconfig

import (
	"github.com/containers/libpod/libpod"
	spec "github.com/opencontainers/runtime-spec/specs-go"
)

// MakeContainerConfig generates all configuration necessary to start a
// container with libpod from a completed CreateConfig struct.
func (config *CreateConfig) MakeContainerConfig(runtime *libpod.Runtime, pod *libpod.Pod) (*spec.Spec, []libpod.CtrCreateOption, error) {
	runtimeSpec, namedVolumes, err := config.createConfigToOCISpec(runtime)
	if err != nil {
		return nil, nil, err
	}

	options, err := config.getContainerCreateOptions(runtime, pod, namedVolumes)
	if err != nil {
		return nil, nil, err
	}

	return runtimeSpec, options, nil
}