Skip to content

Commit d289ba4

Browse files
[supervised-collector] Bump Supervisor and Collector versions to 0.128.0 (#592)
* Bump Supervised Collector to 0.128.0 * Add some helpful comments for debugging
1 parent 3ecf641 commit d289ba4

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

otel-supervised-collector/Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG COLLECTOR_VERSION=0.127.0
1+
ARG COLLECTOR_VERSION=0.128.0
22

33
FROM alpine:3.22 AS certs
44
RUN apk --update add ca-certificates
@@ -7,8 +7,14 @@ RUN mkdir -p /etc/otelcol-contrib/supervisor-data
77
FROM ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-opampsupervisor:${COLLECTOR_VERSION} AS supervisor
88

99
FROM ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:${COLLECTOR_VERSION} AS collector
10+
11+
# Uncomment the line below to generate a more helpful debug container
12+
# FROM alpine:3.22
13+
1014
USER 10001:10001
1115

16+
# Uncomment the line below to generate a more helpful debug container
17+
# COPY --from=collector /otelcol-contrib /otelcol-contrib
1218
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
1319
COPY --from=supervisor --chmod=755 /usr/local/bin/opampsupervisor /opampsupervisor
1420
COPY --from=certs --chmod=744 --chown=10001:10001 /etc/otelcol-contrib/supervisor-data /etc/otelcol-contrib/supervisor-data

otel-supervised-collector/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Default values
44
IMAGE_NAME ?= otel-supervised-collector
55
IMAGE_TAG ?= latest
6-
COLLECTOR_VERSION ?= 0.127.0
6+
COLLECTOR_VERSION ?= 0.128.0
77
PLATFORMS ?= linux/amd64,linux/arm64
88

99
# Docker build arguments

0 commit comments

Comments
 (0)