Skip to content

Commit be43039

Browse files
authored
Merge pull request kubernetes#2109 from AlexeyPerevalov/FixPodResourcesListerServiceName
Fix PodResourcesLister service name
2 parents 4f390cb + 60a786a commit be43039

File tree

2 files changed

+5
-5
lines changed
  • keps/sig-node

2 files changed

+5
-5
lines changed

keps/sig-node/2043-pod-resource-concrete-assigments/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ The GRPC Service exposes two endpoints:
119119

120120
This is shown in proto below:
121121
```protobuf
122-
// PodResources is a service provided by the kubelet that provides information about the
122+
// PodResourcesLister is a service provided by the kubelet that provides information about the
123123
// node resources consumed by pods and containers on the node
124-
service PodResources {
124+
service PodResourcesLister {
125125
rpc List(ListPodResourcesRequest) returns (ListPodResourcesResponse) {}
126126
rpc GetAllocatableResources(AllocatableResourcesRequest) returns (AllocatableResourcesResponse) {}
127127
rpc Watch(WatchPodResourcesRequest) returns (stream WatchPodResourcesResponse) {}

keps/sig-node/606-compute-device-assignment/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ We propose to add a new gRPC service to the Kubelet. This gRPC service would be
9999

100100
This information is obtained from the internal state of the kubelet's Device Manager. The GRPC Service has a single function named `List`, you will find below the v1 API:
101101
```protobuf
102-
// PodResources is a service provided by the kubelet that provides information about the
102+
// PodResourcesLister is a service provided by the kubelet that provides information about the
103103
// node resources consumed by pods and containers on the node
104-
service PodResources {
104+
service PodResourcesLister {
105105
rpc List(ListPodResourcesRequest) returns (ListPodResourcesResponse) {}
106106
}
107107
108-
// ListPodResourcesRequest is the request made to the PodResources service
108+
// ListPodResourcesRequest is the request made to the PodResourcesLister service
109109
message ListPodResourcesRequest {}
110110
111111
// ListPodResourcesResponse is the response returned by List function

0 commit comments

Comments
 (0)