github.com/replicatedcom/ship@v0.50.0/integration/init/istio-1.0.3/expected/.ship/upstream/charts/tracing/templates/service.yaml (about)

     1  apiVersion: v1
     2  kind: List
     3  items:
     4  - apiVersion: v1
     5    kind: Service
     6    metadata:
     7      name: zipkin
     8      namespace: {{ .Release.Namespace }}
     9      labels:
    10        app: jaeger
    11        chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
    12        release: {{ .Release.Name }}
    13        heritage: {{ .Release.Service }}
    14    spec:
    15      type: {{ .Values.service.type }}
    16      ports:
    17        - port: {{ .Values.service.externalPort }}
    18          targetPort: {{ .Values.service.internalPort }}
    19          protocol: TCP
    20          name: {{ .Values.service.name }}
    21      selector:
    22        app: jaeger
    23  - apiVersion: v1
    24    kind: Service
    25    metadata:
    26      name: tracing
    27      namespace: {{ .Release.Namespace }}
    28      annotations:
    29        {{- range $key, $val := .Values.service.annotations }}
    30        {{ $key }}: {{ $val }}
    31        {{- end }}
    32      labels:
    33        app: jaeger
    34        chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
    35        release: {{ .Release.Name }}
    36        heritage: {{ .Release.Service }}
    37    spec:
    38      ports:
    39        - name: http-query
    40          port: 80
    41          protocol: TCP
    42          targetPort: {{ .Values.jaeger.ui.port }}
    43      selector:
    44        app: jaeger