Merge pull request #563 from rhatdan/master
Need to be consistent in out nameing of OCI
This commit is contained in:
commit
fee5291495
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ const (
|
|||
seccompLocalhostPrefix = "localhost/"
|
||||
)
|
||||
|
||||
func addOciBindMounts(sb *sandbox, containerConfig *pb.ContainerConfig, specgen *generate.Generator) error {
|
||||
func addOCIBindMounts(sb *sandbox, containerConfig *pb.ContainerConfig, specgen *generate.Generator) error {
|
||||
mounts := containerConfig.GetMounts()
|
||||
for _, mount := range mounts {
|
||||
dest := mount.ContainerPath
|
||||
|
@ -337,7 +337,7 @@ func (s *Server) createSandboxContainer(ctx context.Context, containerID string,
|
|||
specgen := generate.New()
|
||||
specgen.HostSpecific = true
|
||||
|
||||
if err := addOciBindMounts(sb, containerConfig, &specgen); err != nil {
|
||||
if err := addOCIBindMounts(sb, containerConfig, &specgen); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue