tempo/example/helm/single-binary-extras.yaml
A. Stoewer 3555fdf776 Update example images (#4842)
* Examples: upgrade xk6-client-tracing to v0.0.7

* Upgrade grafana to 11.5.2
2025-03-13 14:40:36 +10:00

45 lines
883 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
ingress.kubernetes.io/ssl-redirect: "false"
name: ingress
namespace: default
spec:
rules:
- http:
paths:
- backend:
service:
name: grafana
port:
number: 80
path: /
pathType: Prefix
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: xk6-tracing
namespace: default
spec:
minReadySeconds: 10
replicas: 1
revisionHistoryLimit: 10
selector:
matchLabels:
app: xk6-tracing
name: xk6-tracing
template:
metadata:
labels:
app: xk6-tracing
name: xk6-tracing
spec:
containers:
- env:
- name: ENDPOINT
value: tempo:4317
image: ghcr.io/grafana/xk6-client-tracing:v0.0.7
imagePullPolicy: IfNotPresent
name: xk6-tracing