From 21564aafed230eacc812358d8a3ac84fa368e0eb Mon Sep 17 00:00:00 2001 From: "Tim St. Clair" Date: Tue, 18 Oct 2016 17:17:05 -0700 Subject: [PATCH] stdin should be a bool, not a byte stream --- pkg/kubelet/api/v1alpha1/runtime/api.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/api/v1alpha1/runtime/api.proto b/pkg/kubelet/api/v1alpha1/runtime/api.proto index a680b0bffd..2caa1d5b74 100644 --- a/pkg/kubelet/api/v1alpha1/runtime/api.proto +++ b/pkg/kubelet/api/v1alpha1/runtime/api.proto @@ -607,7 +607,7 @@ message ExecRequest { // Whether use tty optional bool tty = 3; // Streaming stdin - optional bytes stdin = 4; + optional bool stdin = 4; } message ExecResponse { @@ -619,7 +619,7 @@ message AttachRequest { // The id of the container optional string container_id = 1; // Streaming stdin - optional bytes stdin = 2; + optional string stdin = 2; } message AttachResponse {