sigs.k8s.io/cluster-api-provider-azure@v1.14.3/hack/observability/jaeger/chart/templates/service-headless.yaml (about)

     1  {{- if .Values.enabled }}
     2  apiVersion: v1
     3  kind: Service
     4  metadata:
     5    name: {{ include "jaeger-all-in-one.fullname" . }}-headless
     6    namespace: {{ .Release.Namespace }}
     7    labels:
     8      {{- include "jaeger-all-in-one.labels" . | nindent 4 }}
     9    {{- with .Values.service.headless.annotations }}
    10    annotations:
    11      {{- toYaml . | nindent 4 }}
    12    {{- end }}
    13  spec:
    14    clusterIP: None
    15    ports:
    16      - port: 6831
    17        targetPort: udp-com-thr
    18        protocol: UDP
    19        name: udp-com-thr
    20      - port: 6832
    21        targetPort: udp-bin-thr
    22        protocol: UDP
    23        name: udp-bin-thr
    24      - port: 5775
    25        targetPort: udp-bin-thr-o
    26        protocol: UDP
    27        name: udp-bin-thr-o
    28      - port: 5778
    29        targetPort: http-configs
    30        protocol: TCP
    31        name: http-configs
    32      {{- if .Values.enableHttpOpenTelemetryCollector }}
    33      - port: 4317
    34        targetPort: http-otlp-grpc
    35        protocol: TCP
    36        name: http-otlp-grpc
    37      - port: 4318
    38        targetPort: http-otlp
    39        protocol: TCP
    40        name: http-otlp
    41      {{- end }}
    42      - port: {{ .Values.service.port }}
    43        targetPort: http-ui
    44        protocol: TCP
    45        name: http-ui
    46      - port: 14250
    47        targetPort: grpc-proto
    48        protocol: TCP
    49        name: grpc-proto
    50      - port: 14268
    51        targetPort: http-bin-thr
    52        protocol: TCP
    53        name: http-bin-thr
    54      - port: 14269
    55        targetPort: http-admin
    56        protocol: TCP
    57        name: http-admin
    58      {{- if .Values.enableHttpZipkinCollector }}
    59      - port: 9411
    60        targetPort: http-zipkin
    61        protocol: TCP
    62        name: http-zipkin
    63      {{- end }}
    64    selector:
    65      {{- include "jaeger-all-in-one.selectorLabels" . | nindent 4 }}
    66  {{- end }}