This contains quite a bit (also bumps google/uuid to 1.3.0). Some HostProcess container improvements to get ready for whenever it goes to stable in Kubernetes, Hyper-V (windows) container support for CRI, and a plethora of other small additions and fixes. Signed-off-by: Daniel Canter <dcanter@microsoft.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build windows
 | 
						|
 | 
						|
package computestorage
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"github.com/Microsoft/hcsshim/internal/oc"
 | 
						|
	"github.com/pkg/errors"
 | 
						|
	"golang.org/x/sys/windows"
 | 
						|
)
 | 
						|
 | 
						|
// FormatWritableLayerVhd formats a virtual disk for use as a writable container layer.
 | 
						|
//
 | 
						|
// If the VHD is not mounted it will be temporarily mounted.
 | 
						|
//
 | 
						|
// NOTE: This API had a breaking change in the operating system after Windows Server 2019.
 | 
						|
// On ws2019 the API expects to get passed a file handle from CreateFile for the vhd that
 | 
						|
// the caller wants to format. On > ws2019, its expected that the caller passes a vhd handle
 | 
						|
// that can be obtained from the virtdisk APIs.
 | 
						|
func FormatWritableLayerVhd(ctx context.Context, vhdHandle windows.Handle) (err error) {
 | 
						|
	title := "hcsshim::FormatWritableLayerVhd"
 | 
						|
	ctx, span := oc.StartSpan(ctx, title) //nolint:ineffassign,staticcheck
 | 
						|
	defer span.End()
 | 
						|
	defer func() { oc.SetSpanStatus(span, err) }()
 | 
						|
 | 
						|
	err = hcsFormatWritableLayerVhd(vhdHandle)
 | 
						|
	if err != nil {
 | 
						|
		return errors.Wrap(err, "failed to format writable layer vhd")
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 |