mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-20 13:06:38 +00:00
Upgrades containerd, and switches to the official 64-bit ARM binary. Continues to use my binary for 32-bit arm hosts. CNI upgraded to v0.9.1 Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
30 lines
901 B
Go
Generated
30 lines
901 B
Go
Generated
package wclayer
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/Microsoft/go-winio/pkg/guid"
|
|
"github.com/Microsoft/hcsshim/internal/hcserror"
|
|
"github.com/Microsoft/hcsshim/internal/oc"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// NameToGuid converts the given string into a GUID using the algorithm in the
|
|
// Host Compute Service, ensuring GUIDs generated with the same string are common
|
|
// across all clients.
|
|
func NameToGuid(ctx context.Context, name string) (_ guid.GUID, err error) {
|
|
title := "hcsshim::NameToGuid"
|
|
ctx, span := trace.StartSpan(ctx, title) //nolint:ineffassign,staticcheck
|
|
defer span.End()
|
|
defer func() { oc.SetSpanStatus(span, err) }()
|
|
span.AddAttributes(trace.StringAttribute("objectName", name))
|
|
|
|
var id guid.GUID
|
|
err = nameToGuid(name, &id)
|
|
if err != nil {
|
|
return guid.GUID{}, hcserror.New(err, title, "")
|
|
}
|
|
span.AddAttributes(trace.StringAttribute("guid", id.String()))
|
|
return id, nil
|
|
}
|