Служба kubernetes - можно ли использовать одно и то же значение порта (т. е. 10002) для трех разных значений переменных (порт, целевой порт, порт узла)? - PullRequest
0 голосов
/ 10 мая 2019

служба kubernetes - можно ли использовать одно и то же значение порта (например, 10002) для трех различных значений переменных (порт, целевой порт, порт узла)?

т.е.

spec:
  type: NodePort
  ports:
  - port: 10002
    name: webapi
    targetPort: 10002
    nodePort: 10002

Ответы [ 2 ]

2 голосов
/ 10 мая 2019

В k8s Спецификация службы

TargetPort: Порт Pod

Порт : Порт службы

NodePort: Порт Nodepool

Таким образом, порт и целевой порт должны быть одинаковыми, и значение nodeport приходит динамически.(по умолчанию: 30000-32767)

Подробную информацию можно получить с помощью следующей команды kubectl explain service.spec.ports

FIELDS:
   name <string>
     The name of this port within the service. This must be a DNS_LABEL. All
     ports within a ServiceSpec must have unique names. This maps to the 'Name'
     field in EndpointPort objects. Optional if only one ServicePort is defined
     on this service.

   nodePort     <integer>
     The port on each node on which this service is exposed when type=NodePort
     or LoadBalancer. Usually assigned by the system. If specified, it will be
     allocated to the service if unused or else creation of the service will
     fail. Default is to auto-allocate a port if the ServiceType of this Service
     requires one. More info:
     https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport

   port <integer> -required-
     The port that will be exposed by this service.

   protocol     <string>
     The IP protocol for this port. Supports "TCP" and "UDP". Default is TCP.

   targetPort   <string>
     Number or name of the port to access on the pods targeted by the service.
     Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If
     this is a string, it will be looked up as a named port in the target Pod's
     container ports. If this is not specified, the value of the 'port' field is
     used (an identity map). This field is ignored for services with
     clusterIP=None, and should be omitted or set equal to the 'port' field.
     More info:
     https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service

Если вы хотите указать конкретный номер порта, вы можете указать значениев поле nodePort, и система выделит вам этот порт, иначе транзакция API завершится неудачно (т.е. вам нужно позаботиться о возможных конфликтах портов самостоятельно).Указанное вами значение должно находиться в настроенном диапазоне для портов узла. nodeport

1 голос
/ 10 мая 2019

ip и порт сервиса являются виртуальными. они не привязаны к сетевому интерфейсу. Вы можете использовать любой порт для обслуживания порта. он не должен совпадать с целевым портом pods.

диапазон узлов по умолчанию в kubernetes: 30000-32767. Вы также можете определить пользовательский диапазон.

так, возможно иметь тот же порт для pod / server / nodeport, если порт открыт для соединения

...