Commit d6d0a6eb authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #25656 from tmrts/godep-update/rkt-1.6.0

Automatic merge from submit-queue Update rkt API version to 1.6.0 Updates coreos/rkt container runtime dependency to `1.6.0` Fixes #25430
parents d06fe0ca 7d40332c
...@@ -52,18 +52,18 @@ ...@@ -52,18 +52,18 @@
}, },
{ {
"ImportPath": "github.com/appc/spec/schema", "ImportPath": "github.com/appc/spec/schema",
"Comment": "v0.7.4-43-gd22f52b", "Comment": "v0.8.1",
"Rev": "d22f52bfeba06614d37c7aa1ad6fd76d8fdb2ba8" "Rev": "b889d03467ae08bb6c13241762a64305b69bcf82"
}, },
{ {
"ImportPath": "github.com/appc/spec/schema/common", "ImportPath": "github.com/appc/spec/schema/common",
"Comment": "v0.7.4-43-gd22f52b", "Comment": "v0.8.1",
"Rev": "d22f52bfeba06614d37c7aa1ad6fd76d8fdb2ba8" "Rev": "b889d03467ae08bb6c13241762a64305b69bcf82"
}, },
{ {
"ImportPath": "github.com/appc/spec/schema/types", "ImportPath": "github.com/appc/spec/schema/types",
"Comment": "v0.7.4-43-gd22f52b", "Comment": "v0.8.1",
"Rev": "d22f52bfeba06614d37c7aa1ad6fd76d8fdb2ba8" "Rev": "b889d03467ae08bb6c13241762a64305b69bcf82"
}, },
{ {
"ImportPath": "github.com/armon/go-metrics", "ImportPath": "github.com/armon/go-metrics",
...@@ -545,8 +545,8 @@ ...@@ -545,8 +545,8 @@
}, },
{ {
"ImportPath": "github.com/coreos/rkt/api/v1alpha", "ImportPath": "github.com/coreos/rkt/api/v1alpha",
"Comment": "v1.4.0", "Comment": "v1.6.0",
"Rev": "f5b69782d120a7ae5ada8f2ebad97a014a98ebd5" "Rev": "14437382a98e5ebeb6cafb57cff445370e3f7d56"
}, },
{ {
"ImportPath": "github.com/cpuguy83/go-md2man/md2man", "ImportPath": "github.com/cpuguy83/go-md2man/md2man",
......
...@@ -64,9 +64,9 @@ const ( ...@@ -64,9 +64,9 @@ const (
RktType = "rkt" RktType = "rkt"
DefaultRktAPIServiceEndpoint = "localhost:15441" DefaultRktAPIServiceEndpoint = "localhost:15441"
minimumAppcVersion = "0.7.4" minimumAppcVersion = "0.8.1"
minimumRktBinVersion = "1.2.1" minimumRktBinVersion = "1.6.0"
recommendedRktBinVersion = "1.2.1" recommendedRktBinVersion = "1.6.0"
minimumRktApiVersion = "1.0.0-alpha" minimumRktApiVersion = "1.0.0-alpha"
minimumSystemdVersion = "219" minimumSystemdVersion = "219"
......
...@@ -152,11 +152,12 @@ func (r Mount) assertValid() error { ...@@ -152,11 +152,12 @@ func (r Mount) assertValid() error {
// RuntimeApp describes an application referenced in a PodManifest // RuntimeApp describes an application referenced in a PodManifest
type RuntimeApp struct { type RuntimeApp struct {
Name types.ACName `json:"name"` Name types.ACName `json:"name"`
Image RuntimeImage `json:"image"` Image RuntimeImage `json:"image"`
App *types.App `json:"app,omitempty"` App *types.App `json:"app,omitempty"`
Mounts []Mount `json:"mounts,omitempty"` ReadOnlyRootFS bool `json:"readOnlyRootFS,omitempty"`
Annotations types.Annotations `json:"annotations,omitempty"` Mounts []Mount `json:"mounts,omitempty"`
Annotations types.Annotations `json:"annotations,omitempty"`
} }
// RuntimeImage describes an image referenced in a RuntimeApp // RuntimeImage describes an image referenced in a RuntimeApp
......
...@@ -22,7 +22,7 @@ const ( ...@@ -22,7 +22,7 @@ const (
// version represents the canonical version of the appc spec and tooling. // version represents the canonical version of the appc spec and tooling.
// For now, the schema and tooling is coupled with the spec itself, so // For now, the schema and tooling is coupled with the spec itself, so
// this must be kept in sync with the VERSION file in the root of the repo. // this must be kept in sync with the VERSION file in the root of the repo.
version string = "0.7.4+git" version string = "0.8.1"
) )
var ( var (
......
...@@ -217,6 +217,10 @@ message PodFilter { ...@@ -217,6 +217,10 @@ message PodFilter {
// If not empty, the pods whose cgroup are listed will be returned. // If not empty, the pods whose cgroup are listed will be returned.
repeated string cgroups = 7; repeated string cgroups = 7;
// If not empty, the pods whose these cgroup belong to will be returned.
// i.e. the pod's cgroup is a prefix of the specified cgroup
repeated string pod_sub_cgroups = 8;
} }
// ImageFilter defines the condition that the returned images need to satisfy in ListImages(). // ImageFilter defines the condition that the returned images need to satisfy in ListImages().
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment