mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-14 16:25:09 -05:00
Use standard protoc for the kubelet plugin manager instead of gogo. Part of https://github.com/kubernetes/kubernetes/issues/96564 Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
36 lines
1.1 KiB
Protocol Buffer
36 lines
1.1 KiB
Protocol Buffer
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
syntax = "proto3";
|
|
|
|
package v1beta2;
|
|
option go_package = "k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2";
|
|
|
|
// Renames a field from v1beta1 ExampleRequest.
|
|
message ExampleRequest {
|
|
string request = 1;
|
|
string v1beta2_field = 2;
|
|
}
|
|
|
|
message ExampleResponse {
|
|
string error = 1;
|
|
}
|
|
|
|
// Example is a simple example service for general reference on the recommended
|
|
// kubelet plugin model and plugin watcher testing.
|
|
service Example {
|
|
rpc GetExampleInfo(ExampleRequest) returns (ExampleResponse) {}
|
|
}
|