Skip to content

Commit

Permalink
test resources
Browse files Browse the repository at this point in the history
  • Loading branch information
yotamloe committed Jun 6, 2024
1 parent 6d11e12 commit ed60767
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tests/resources/logsgen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: log-generator
labels:
app: log-generator
spec:
replicas: 1
selector:
matchLabels:
app: log-generator
template:
metadata:
labels:
app: log-generator
spec:
containers:
- name: random-logger
image: chentex/random-logger:latest
args:
- "100"
- "400"
24 changes: 24 additions & 0 deletions tests/resources/tracegen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: trace-gen
spec:
selector:
matchLabels:
app: trace-gen
template:
metadata:
labels:
app: trace-gen
spec:
containers:
- name: trace-gen
image: ghcr.io/frzifus/jaeger-otel-test:latest
args:
[
'-otel.agent.host=logzio-k8s-telemetry-otel-collector',
'-otel.agent.port=4317',
]
env:
- name: OTEL_SERVICE_NAME
value: 'local-test-service'

0 comments on commit ed60767

Please sign in to comment.