mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-06 16:04:26 +01:00
Gopkg.lock says it's "dbea6f2bd41658b84b00417ceefa416b979cbf10"
but it is actually "5017d4e9a9cf2d4381db99eacd9baf84b95bfb14".
We need to make sure Gopkg.lock does not lie otherwise `dep ensure`
would really fetch the locked revision and it causes build failure
due to API changes.
Introduced by: 76d9db3e0b (vendor: Add github.com/gogo/protobuf).
While at it, constraint containerd/cgroups to a working revision.
Fixes: #1447
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
30 lines
851 B
Go
30 lines
851 B
Go
package wclayer
|
|
|
|
import (
|
|
"github.com/Microsoft/hcsshim/internal/hcserror"
|
|
"github.com/Microsoft/hcsshim/internal/interop"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// GetSharedBaseImages will enumerate the images stored in the common central
|
|
// image store and return descriptive info about those images for the purpose
|
|
// of registering them with the graphdriver, graph, and tagstore.
|
|
func GetSharedBaseImages() (imageData string, err error) {
|
|
title := "hcsshim::GetSharedBaseImages"
|
|
logrus.Debug(title)
|
|
defer func() {
|
|
if err != nil {
|
|
logrus.WithError(err).Error(err)
|
|
} else {
|
|
logrus.WithField("imageData", imageData).Debug(title + " - succeeded")
|
|
}
|
|
}()
|
|
|
|
var buffer *uint16
|
|
err = getBaseImages(&buffer)
|
|
if err != nil {
|
|
return "", hcserror.New(err, title+" - failed", "")
|
|
}
|
|
return interop.ConvertAndFreeCoTaskMemString(buffer), nil
|
|
}
|