Skip to content

Commit

Permalink
Use grpc instead of grpc-server for the Kubernetes port name
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Jul 14, 2022
1 parent 32ff92a commit a763f50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ KubernetesPortBuildItem registerGrpcServiceInKubernetes(List<BindableServiceBuil
if (!bindables.isEmpty()) {
int port = ConfigProvider.getConfig().getOptionalValue("quarkus.grpc.server.port", Integer.class)
.orElse(9000);
return new KubernetesPortBuildItem(port, GRPC_SERVER);
return new KubernetesPortBuildItem(port, "grpc");
}
return null;
}
Expand Down

0 comments on commit a763f50

Please sign in to comment.