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 authored and gsmet committed Jul 18, 2022
1 parent 9c5f1b5 commit 9385a42
Showing 1 changed file with 1 addition and 1 deletion.
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 9385a42

Please sign in to comment.