mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-28 11:34:40 +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>
34 lines
872 B
Go
34 lines
872 B
Go
/*
|
|
* HCS API
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: 2.1
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package hcsschema
|
|
|
|
type Plan9Share struct {
|
|
|
|
Name string `json:"Name,omitempty"`
|
|
|
|
// The name by which the guest operation system can access this share, via the aname parameter in the Plan9 protocol.
|
|
AccessName string `json:"AccessName,omitempty"`
|
|
|
|
Path string `json:"Path,omitempty"`
|
|
|
|
Port int32 `json:"Port,omitempty"`
|
|
|
|
// Flags are marked private. Until they are exported correctly
|
|
//
|
|
// ReadOnly 0x00000001
|
|
// LinuxMetadata 0x00000004
|
|
// CaseSensitive 0x00000008
|
|
Flags int32 `json:"Flags,omitempty"`
|
|
|
|
ReadOnly bool `json:"ReadOnly,omitempty"`
|
|
|
|
UseShareRootIdentity bool `json:"UseShareRootIdentity,omitempty"`
|
|
}
|