mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-08 16:06:47 +00:00
* Updates containerd to v1.7.0 and new binary for 32-bit Arm OSes. * Updates Go dependencies - openfaas and external Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
33 lines
1.0 KiB
Go
Generated
33 lines
1.0 KiB
Go
Generated
//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
|
|
}
|