wangyang0918 commented on a change in pull request #11715: [FLINK-16598][k8s] Respect the rest-port exposed by the external Service when retrieving Endpoint URL: https://github.com/apache/flink/pull/11715#discussion_r409330048
########## File path: flink-kubernetes/src/main/java/org/apache/flink/kubernetes/kubeclient/Fabric8FlinkKubeClient.java ########## @@ -264,17 +263,32 @@ private void setOwnerReference(Deployment deployment, List<HasMetadata> resource } /** - * To get nodePort of configured ports. + * Get rest port from the external Service. */ - private int getServiceNodePort(Service service, ConfigOption<Integer> configPort) { - final int port = this.flinkConfig.getInteger(configPort); - if (service.getSpec() != null && service.getSpec().getPorts() != null) { - for (ServicePort p : service.getSpec().getPorts()) { - if (p.getPort() == port) { - return p.getNodePort(); - } - } + private int getRestPortFromExternalService(Service externalService) { + final List<ServicePort> servicePortCandidates = externalService.getSpec().getPorts() + .stream() + .filter(x -> x.getName().equals(Constants.REST_PORT_NAME)) + .collect(Collectors.toList()); + + if (servicePortCandidates.isEmpty()) { + throw new RuntimeException("Failed to find port \"" + Constants.REST_PORT_NAME + "\" in Service \"" + + KubernetesUtils.getRestServiceName(this.clusterId) + "\""); + } + + final ServicePort externalServicePort = servicePortCandidates.get(0); + + final KubernetesConfigOptions.ServiceExposedType externalServiceType = + KubernetesConfigOptions.ServiceExposedType.valueOf(externalService.getSpec().getType()); + + switch (externalServiceType) { + case ClusterIP: + case LoadBalancer: Review comment: I know your concern and i do not insist on the fallback logics. What i am talking is how to make separating `LoadBalancer` and `NodePort` more reasonable. If the user set the `kubernetes.rest-service.exposed.type=LoadBalancer`, then we should wait for the load balancer ready or timeout, just as you say, we should not print a confusing JobManager url in the log. This is the current problem. About the default value of `kubernetes.rest-service.exposed.type`, it needs a wider discussion. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services