Use typeurl.Any instead of github.com/gogo/protobuf/types.Any

This commit upgrades github.com/containerd/typeurl to use typeurl.Any.
The interface hides gogo/protobuf/types.Any from containerd's Go client.

Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
This commit is contained in:
Kazuyoshi Kato
2022-03-22 00:40:39 +00:00
parent 551516a18d
commit 96b16b447d
42 changed files with 336 additions and 152 deletions

View File

@@ -20,7 +20,7 @@ import (
"context"
"time"
"github.com/gogo/protobuf/types"
"github.com/containerd/typeurl"
)
// Container represents the set of data pinned by a container. Unless otherwise
@@ -53,7 +53,7 @@ type Container struct {
// container.
//
// This field is required but mutable.
Spec *types.Any
Spec typeurl.Any
// SnapshotKey specifies the snapshot key to use for the container's root
// filesystem. When starting a task from this container, a caller should
@@ -75,13 +75,13 @@ type Container struct {
UpdatedAt time.Time
// Extensions stores client-specified metadata
Extensions map[string]types.Any
Extensions map[string]typeurl.Any
}
// RuntimeInfo holds runtime specific information
type RuntimeInfo struct {
Name string
Options *types.Any
Options typeurl.Any
}
// Store interacts with the underlying container storage