This commit is contained in:
marcel-dempers 2021-01-21 10:35:18 +11:00
parent daf73d2cec
commit 80433f9a7f
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,2 @@
# Introduction to Linkerd : Distributed Tracing with Jaeger

View File

@ -0,0 +1,50 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: jaeger
labels:
app: jaeger
spec:
selector:
matchLabels:
app: jaeger
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
template:
metadata:
labels:
app: jaeger
spec:
containers:
- name: jaeger
image: aimvector/service-mesh:jaeger-1.0.0
imagePullPolicy : Always
ports:
- containerPort: 10010
env:
- name: "ENVIRONMENT"
value: "DEBUG"
- name: "REDIS_HOST"
value: "playlists-db"
- name: "REDIS_PORT"
value: "6379"
---
apiVersion: v1
kind: Service
metadata:
name: jaeger
labels:
app: jaeger
spec:
type: ClusterIP
selector:
app: jaeger
ports:
- protocol: TCP
name: http
port: 80
targetPort: 10010