Files
connected-home/helm/jaeger/templates/service.yaml
Steve Sampson 30a5a01384
Some checks failed
continuous-integration/drone Build is failing
Add Distributed Tracing to Application
* add distributed tracing to application
   * add jaeger helm chart
   * Create Interceptor to propagate trace context to gRPC server
   * Create Tower Layer to extract trace context and add to request extensions
   * Retrieve trace context from request extensions and set inside request handlers
* add registration to frontend
* use one image for all core services

Reviewed-on: #1
Co-authored-by: Steve Sampson <mail@stephensampson.dev>
Co-committed-by: Steve Sampson <mail@stephensampson.dev>
2022-09-23 18:33:00 -03:00

15 lines
428 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "jaeger.fullname" . }}
labels:
{{- include "jaeger.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.service.port }}
protocol: {{ .Values.service.protocol }}
name: {{ .Values.service.name }}
selector:
{{- include "jaeger.selectorLabels" . | nindent 4 }}