Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
ba5a684c
Commit
ba5a684c
authored
Dec 29, 2016
by
Pengfei Ni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CRI: add image ref to PullImageResponse
parent
cac38615
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
api.pb.go
pkg/kubelet/api/v1alpha1/runtime/api.pb.go
+0
-0
api.proto
pkg/kubelet/api/v1alpha1/runtime/api.proto
+7
-4
No files found.
pkg/kubelet/api/v1alpha1/runtime/api.pb.go
View file @
ba5a684c
This diff is collapsed.
Click to expand it.
pkg/kubelet/api/v1alpha1/runtime/api.proto
View file @
ba5a684c
...
@@ -421,9 +421,8 @@ message ListPodSandboxResponse {
...
@@ -421,9 +421,8 @@ message ListPodSandboxResponse {
}
}
// ImageSpec is an internal representation of an image. Currently, it wraps the
// ImageSpec is an internal representation of an image. Currently, it wraps the
// value of a Container's Image field (e.g. imageName, imageName:tag, or
// value of a Container's Image field (e.g. imageID or imageDigest), but in the
// imageName:digest), but in the future it will include more detailed
// future it will include more detailed information about the different image types.
// information about the different image types.
message
ImageSpec
{
message
ImageSpec
{
optional
string
image
=
1
;
optional
string
image
=
1
;
}
}
...
@@ -878,7 +877,11 @@ message PullImageRequest {
...
@@ -878,7 +877,11 @@ message PullImageRequest {
optional
PodSandboxConfig
sandbox_config
=
3
;
optional
PodSandboxConfig
sandbox_config
=
3
;
}
}
message
PullImageResponse
{}
message
PullImageResponse
{
// Reference to the image in use. For most runtimes, this should be an
// image ID or digest.
optional
string
image_ref
=
1
;
}
message
RemoveImageRequest
{
message
RemoveImageRequest
{
// Spec of the image to remove.
// Spec of the image to remove.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment