| {{- $isDistributed := eq (include "loki.deployment.isDistributed" .) "true" -}} |
| {{- if and $isDistributed (or (not .Values.ingester.zoneAwareReplication.enabled) .Values.ingester.zoneAwareReplication.migration.enabled) }} |
| apiVersion: v1 |
| kind: Service |
| metadata: |
| name: {{ include "loki.ingesterFullname" . }} |
| namespace: {{ .Release.Namespace }} |
| labels: |
| {{- include "loki.ingesterLabels" . | nindent 4 }} |
| {{- with .Values.ingester.serviceLabels }} |
| {{- toYaml . | nindent 4 }} |
| {{- end }} |
| {{- with .Values.loki.serviceAnnotations }} |
| annotations: |
| {{- toYaml . | nindent 4 }} |
| {{- end }} |
| spec: |
| type: ClusterIP |
| ports: |
| - name: http-metrics |
| port: 3100 |
| targetPort: http-metrics |
| protocol: TCP |
| - name: grpc |
| port: 9095 |
| targetPort: grpc |
| protocol: TCP |
| {{- if .Values.ingester.appProtocol.grpc }} |
| appProtocol: {{ .Values.ingester.appProtocol.grpc }} |
| {{- end }} |
| selector: |
| {{- include "loki.ingesterSelectorLabels" . | nindent 4 }} |
| {{- end -}} |