mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-28 15:48:12 +00:00
30 lines
609 B
YAML
30 lines
609 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
service: hotrod
|
|
name: hotrod
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
service: hotrod
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
service: hotrod
|
|
spec:
|
|
containers:
|
|
- args:
|
|
- all
|
|
env:
|
|
- name: JAEGER_ENDPOINT
|
|
value: http://otel-collector.platform.svc.cluster.local:14268/api/traces
|
|
image: jaegertracing/example-hotrod:latest
|
|
imagePullPolicy: IfNotPresent
|
|
name: hotrod
|
|
ports:
|
|
- containerPort: 8080
|
|
restartPolicy: Always
|