Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.26.3-alpine3.22@sha256:be93003ee861b3b91b6ebcb22678524947e0cd786c2df3f32af520006b1e54f5 AS builder
FROM --platform=$BUILDPLATFORM golang:1.26.4-alpine3.22@sha256:727cfc3c40be55cd1bc9a4a059406b28a059857e3be752aa9d09531e12c20c56 AS builder

RUN apk add --update --no-cache ca-certificates make git curl

Expand All @@ -25,7 +25,7 @@ COPY pkg/ pkg/
# Build
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build $GO_BUILD_FLAGS -o /usr/local/bin/manager cmd/main.go

FROM gcr.io/distroless/static:nonroot@sha256:963fa6c544fe5ce420f1f54fb88b6fb01479f054c8056d0f74cc2c6000df5240
FROM gcr.io/distroless/static:nonroot@sha256:f7f8f729987ad0fdf6b05eeeae94b26e6a0f613bdf46feea7fc40f7bd72953e6

COPY --from=builder /usr/local/bin/manager /manager
USER 65532:65532
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ENVTEST_K8S_VERSION = 1.35.0
ENVTEST_OTEL_OPERATOR_VERSION=0.150.0

# renovate: datasource=github-releases depName=cert-manager/cert-manager versioning=semver
CERT_MANAGER_VERSION = 1.20.2
CERT_MANAGER_VERSION = 1.21.0

BIN := ${PWD}/bin

Expand Down
6 changes: 3 additions & 3 deletions charts/telemetry-controller/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: opentelemetry-operator
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
version: 0.113.1
digest: sha256:645dd3a495f961c1efc54859f75aa8ca2ed0c6e66abe3022e66f37eb52259c1b
generated: "2026-05-14T18:49:45.084918169Z"
version: 0.119.0
digest: sha256:2caba41a1eba6fed0eab1bdd4491ffdfae9f2f571391f5ef6611bef12d1418dc
generated: "2026-07-15T12:11:36.550574886Z"
2 changes: 1 addition & 1 deletion charts/telemetry-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ sources:
- https://github.com/kube-logging/telemetry-controller
dependencies:
- name: opentelemetry-operator
version: 0.113.1
version: 0.119.0
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
26 changes: 13 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ require (
github.com/google/go-cmp v0.7.0
github.com/hashicorp/go-multierror v1.1.1
github.com/mitchellh/mapstructure v1.5.0
github.com/onsi/ginkgo/v2 v2.29.0
github.com/onsi/gomega v1.41.0
github.com/open-telemetry/opentelemetry-operator v0.152.0
github.com/onsi/ginkgo/v2 v2.32.0
github.com/onsi/gomega v1.42.1
github.com/open-telemetry/opentelemetry-operator v0.156.0
github.com/prometheus/client_golang v1.23.2
github.com/stretchr/testify v1.11.1
go.opentelemetry.io/collector/component v1.59.0
go.opentelemetry.io/collector/config/configauth v1.59.0
go.opentelemetry.io/collector/config/configcompression v1.59.0
go.opentelemetry.io/collector/config/configopaque v1.59.0
go.opentelemetry.io/collector/config/configtelemetry v0.153.0
go.opentelemetry.io/collector/otelcol v0.153.0
go.opentelemetry.io/collector/component v1.62.0
go.opentelemetry.io/collector/config/configauth v1.62.0
go.opentelemetry.io/collector/config/configcompression v1.62.0
go.opentelemetry.io/collector/config/configopaque v1.62.0
go.opentelemetry.io/collector/config/configtelemetry v0.156.0
go.opentelemetry.io/collector/otelcol v0.156.0
go.opentelemetry.io/collector/pipeline v1.59.0
go.opentelemetry.io/collector/service v0.153.0
go.opentelemetry.io/collector/service v0.156.0
go.uber.org/zap v1.28.0
k8s.io/api v0.36.1
k8s.io/apimachinery v0.36.1
k8s.io/client-go v0.36.1
k8s.io/api v0.36.2
k8s.io/apimachinery v0.36.2
k8s.io/client-go v0.36.2
sigs.k8s.io/controller-runtime v0.24.1
sigs.k8s.io/yaml v1.6.0
)
Expand Down
Loading