Some checks failed
continuous-integration/drone Build is failing
* 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>
15 lines
428 B
YAML
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 }} |