Skip to content

Commit 2a818d5

Browse files
ISSUE 8251 update obi image tag to main (#8252)
Co-authored-by: Marylia Gutierrez <marylia.gutierrez@grafana.com>
1 parent 3bc09b0 commit 2a818d5

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

content/en/docs/zero-code/obi/distributed-traces.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ spec:
104104
limits:
105105
memory: 120Mi
106106
terminationMessagePolicy: FallbackToLogsOnError
107-
image: 'docker.io/otel/ebpf-instrument:latest'
107+
image: 'docker.io/otel/ebpf-instrument:main'
108108
imagePullPolicy: 'Always'
109109
env:
110110
- name: OTEL_EXPORTER_OTLP_ENDPOINT
@@ -207,7 +207,7 @@ configuration, which ensures OBI has sufficient information to determine the
207207
services:
208208
...
209209
obi:
210-
image: 'docker.io/otel/ebpf-instrument:latest'
210+
image: 'docker.io/otel/ebpf-instrument:main'
211211
environment:
212212
OTEL_EBPF_CONFIG_PATH: "/configs/obi-config.yml"
213213
volumes:

content/en/docs/zero-code/obi/network/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ spec:
9292
configMap:
9393
name: obi-config
9494
- name: obi
95-
image: otel/ebpf-instrument:latest
95+
image: otel/ebpf-instrument:main
9696
securityContext:
9797
privileged: true
9898
volumeMounts:
@@ -106,7 +106,7 @@ spec:
106106
Some observations about this configuration:
107107
108108
- The container image uses the latest under-development
109-
`otel/ebpf-instrument:latest` image.
109+
`otel/ebpf-instrument:main` image.
110110
- OBI needs to run as a DaemonSet, as it is requires only one OBI instance per
111111
node
112112
- To listen to network packets on the host, OBI requires the `hostNetwork: true`

content/en/docs/zero-code/obi/setup/kubernetes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ requirements:
122122
```
123123

124124
The following example instruments the `goblog` pod by attaching OBI as a
125-
container (image available at `otel/ebpf-instrument:latest`). The
125+
container (image available at `otel/ebpf-instrument:main`). The
126126
auto-instrumentation tool is configured to forward metrics and traces to
127127
OpenTelemetry Collector, which is accessible behind the `otelcol` service in the
128128
same namespace:
@@ -158,7 +158,7 @@ spec:
158158
name: http
159159
# Sidecar container with OBI - the eBPF auto-instrumentation tool
160160
- name: obi
161-
image: otel/ebpf-instrument:latest
161+
image: otel/ebpf-instrument:main
162162
securityContext: # Privileges are required to install the eBPF probes
163163
privileged: true
164164
env:
@@ -214,7 +214,7 @@ spec:
214214
serviceAccountName: obi # required if you want kubernetes metadata decoration
215215
containers:
216216
- name: autoinstrument
217-
image: otel/ebpf-instrument:latest
217+
image: otel/ebpf-instrument:main
218218
securityContext:
219219
privileged: true
220220
env:
@@ -294,7 +294,7 @@ spec:
294294
containers:
295295
- name: obi
296296
terminationMessagePolicy: FallbackToLogsOnError
297-
image: otel/ebpf-instrument:latest
297+
image: otel/ebpf-instrument:main
298298
env:
299299
- name: OTEL_EBPF_TRACE_PRINTER
300300
value: "text"
@@ -397,7 +397,7 @@ spec:
397397
hostPID: true #important!
398398
containers:
399399
- name: obi
400-
image: otel/ebpf-instrument:latest
400+
image: otel/ebpf-instrument:main
401401
imagePullPolicy: IfNotPresent
402402
securityContext:
403403
privileged: true

0 commit comments

Comments
 (0)