github.com/replicatedhq/ship@v0.55.0/integration/failing/init/jaeger-helm/expected/.ship/upstream/templates/query-svc.yaml (about) 1 {{- if .Values.query.enabled -}} 2 apiVersion: v1 3 kind: Service 4 metadata: 5 name: {{ template "jaeger.query.name" . }} 6 labels: 7 app: {{ template "jaeger.name" . }} 8 jaeger-infra: query-service 9 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} 10 component: query 11 heritage: {{ .Release.Service }} 12 release: {{ .Release.Name }} 13 {{- if .Values.query.service.annotations }} 14 annotations: 15 {{ toYaml .Values.query.service.annotations | indent 4 }} 16 {{- end }} 17 spec: 18 ports: 19 - name: jaeger-query 20 port: {{ .Values.query.service.queryPort }} 21 protocol: TCP 22 targetPort: {{ .Values.query.service.targetPort }} 23 selector: 24 app: {{ template "jaeger.name" . }} 25 component: query 26 release: {{ .Release.Name }} 27 jaeger-infra: query-pod 28 type: {{ .Values.query.service.type }} 29 {{- template "loadBalancerSourceRanges" .Values.query }} 30 {{- end -}}