hertz101/templates/jaeger-deployment.yaml

31 lines
714 B
YAML

# apiVersion: apps/v1
# kind: Deployment
# metadata:
# labels:
# app: jaeger
# name: jaeger
# spec:
# replicas: 1
# selector:
# matchLabels:
# app: jaeger
# template:
# metadata:
# labels:
# app: jaeger
# spec:
# containers:
# - image: docker.m.daocloud.io/jaegertracing/all-in-one:latest
# name: jaeger
# ports:
# - containerPort: 16686
# protocol: TCP
# - containerPort: 4317
# protocol: TCP
# - containerPort: 4318
# protocol: TCP
# env:
# - name: COLLECTOR_OTLP_ENABLED
# value: "true"
# restartPolicy: Always