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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.25@sha256:6cc2338c038bc20f96ab32848da2b5c0641bb9bb5363f2c33e9b7c8838f9a208 AS builder
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.26@sha256:75ca321c953ce0572c709fa186cff872a510a22d6dad515291c6eb29edb9c849 AS builder

ARG BUILDPLATFORM
ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RELEASE_MSG ?= "koperator release"
REL_TAG = $(shell ./scripts/increment_version.sh -${RELEASE_TYPE} ${TAG})

# Version constants
GOLANGCI_VERSION = 2.7.2 # renovate: datasource=github-releases depName=golangci/golangci-lint
GOLANGCI_VERSION = 2.8.0 # renovate: datasource=github-releases depName=golangci/golangci-lint
LICENSEI_VERSION = 0.9.0 # renovate: datasource=github-releases depName=goph/licensei
CONTROLLER_GEN_VERSION = v0.20.0 # renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
ENVTEST_K8S_VERSION = 1.35.0 # renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools extractVersion=^envtest-v(?<version>.+)$
Expand Down
2 changes: 1 addition & 1 deletion api/v1beta1/kafkacluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const (
DefaultMonitorImage = "ghcr.io/adobe/koperator/jmx-javaagent:1.4.0" // renovate: datasource=docker depName=ghcr.io/adobe/koperator/jmx-javaagent

// DefaultEnvoyImage is the default Envoy proxy image used when users don't specify it in EnvoyConfig.Image
DefaultEnvoyImage = "envoyproxy/envoy:v1.36.4" // renovate: datasource=docker depName=envoyproxy/envoy
DefaultEnvoyImage = "envoyproxy/envoy:v1.37.0" // renovate: datasource=docker depName=envoyproxy/envoy

// ControllerNodeProcessRole represents the node is a controller node
ControllerNodeProcessRole = "controller"
Expand Down
2 changes: 1 addition & 1 deletion charts/kafka-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ prometheusMetrics:
# -- Auth proxy container image repository
repository: quay.io/brancz/kube-rbac-proxy
# -- Auth proxy container image tag
tag: v0.20.1
tag: v0.20.2
# -- Auth proxy container image pull policy
pullPolicy: IfNotPresent
serviceAccount:
Expand Down
4 changes: 2 additions & 2 deletions docker/jmx_exporter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG JMX_EXPORTER_VERSION=1.5.0 # renovate: datasource=github-releases depName=prometheus/jmx_exporter

FROM maven:3-amazoncorretto-21@sha256:def455126ccc18635cb64779d592bbe2558cb9bd6fed23c154918c90111b78b5 AS build
FROM maven:3-amazoncorretto-21@sha256:d7913ca7ae98028c1d991ecbc203e8f4dbeda9dd45df16db6fc3ff3c51725ee1 AS build
ARG JMX_EXPORTER_VERSION

# Install wget to download the release tarball
Expand All @@ -18,7 +18,7 @@ RUN mvn -B -Dmaven.javadoc.skip=true -Dskip.javadoc=true \
-Dmaven.compiler.source=21 -Dmaven.compiler.target=21 -Dmaven.compiler.release=21 \
clean package -pl jmx_prometheus_javaagent -am

FROM alpine:latest@sha256:865b95f46d98cf867a156fe4a135ad3fe50d2056aa3f25ed31662dff6da4eb62
FROM alpine:latest@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
ARG JMX_EXPORTER_VERSION
COPY --from=build /src/jmx_prometheus_javaagent/target/jmx_prometheus_javaagent-${JMX_EXPORTER_VERSION}.jar /opt/jmx_exporter/
RUN ln -s /opt/jmx_exporter/jmx_prometheus_javaagent-${JMX_EXPORTER_VERSION}.jar /jmx_prometheus_javaagent.jar
Expand Down
4 changes: 2 additions & 2 deletions docker/kafka/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG scala_version=2.13
ARG kafka_version=3.9.1 # renovate: datasource=github-tags depName=apache/kafka
ARG java_version=21

FROM alpine:latest@sha256:865b95f46d98cf867a156fe4a135ad3fe50d2056aa3f25ed31662dff6da4eb62 AS kafka_dist
FROM alpine:latest@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 AS kafka_dist

ARG scala_version
ARG kafka_version
Expand All @@ -28,7 +28,7 @@ RUN apk add --no-cache gnupg wget && \


# backported from https://github.com/docker-library/openjdk/blob/master/18/jdk/slim-bullseye/Dockerfile
FROM debian:bullseye-slim@sha256:c5f48c942c667e70d7e64b124cfc939c25a4a43207c0d14b45844d762dc1d50f
FROM debian:bullseye-slim@sha256:f0dbd70ae23f6ffa17f8b816a1ba1a489f7e9b3c32328867f6b456dec869e031

ARG scala_version
ARG kafka_version
Expand Down
2 changes: 1 addition & 1 deletion docs/benchmarks/loadgens/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ WORKDIR /build/sangrenel

RUN go mod download && go build -o /sangrenel

FROM alpine:3.23@sha256:865b95f46d98cf867a156fe4a135ad3fe50d2056aa3f25ed31662dff6da4eb62
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659

RUN apk add --update --no-cache ca-certificates tzdata curl bash

Expand Down
4 changes: 2 additions & 2 deletions docs/examples/springboot-kafka-avro/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.9-eclipse-temurin-21-alpine@sha256:e45339e025dd9df4d256b54133507495ce59d5473600bba1aff8a73bbaaed42b as build
FROM maven:3.9-eclipse-temurin-21-alpine@sha256:ce356dedc8da6c160d82f241e7bea6977e800e59e39882a1530d68d6a74aa72b as build

# Set working directory
WORKDIR /usr/src/myapp
Expand All @@ -12,7 +12,7 @@ COPY src ./src
RUN mvn clean package -DskipTests

# The final image should have minimal layers
FROM eclipse-temurin:25-jre-alpine@sha256:b51543f89580c1ba70e441cfbc0cfc1635c3c16d2e2d77fec9d890342a3a8687
FROM eclipse-temurin:25-jre-alpine@sha256:f10d6259d0798c1e12179b6bf3b63cea0d6843f7b09c9f9c9c422c50e44379ec
RUN apk add --no-cache curl
COPY --from=build /usr/src/myapp/target/kafka-avro-0.0.1-SNAPSHOT.jar app.jar
ENTRYPOINT ["java", "-jar", "app.jar"]
2 changes: 1 addition & 1 deletion docs/examples/springboot-kafka-avro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>io.banzaicloud.blog</groupId>
Expand Down
2 changes: 1 addition & 1 deletion hack/kafka-test-pod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25@sha256:6cc2338c038bc20f96ab32848da2b5c0641bb9bb5363f2c33e9b7c8838f9a208 as builder
FROM golang:1.26@sha256:75ca321c953ce0572c709fa186cff872a510a22d6dad515291c6eb29edb9c849 as builder

WORKDIR /workspace

Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ package e2e
// These versions are monitored by Renovate for automatic updates
const (
// CertManagerVersion is the version of cert-manager Helm chart
CertManagerVersion = "v1.19.2" // renovate: datasource=helm depName=cert-manager registryUrl=https://charts.jetstack.io
CertManagerVersion = "v1.19.3" // renovate: datasource=helm depName=cert-manager registryUrl=https://charts.jetstack.io

// ContourVersion is the version of Contour ingress controller Helm chart
ContourVersion = "0.2.1" // renovate: datasource=helm depName=contour registryUrl=https://projectcontour.github.io/helm-charts

// PrometheusOperatorVersion is the version of kube-prometheus-stack Helm chart
PrometheusOperatorVersion = "80.13.0" // renovate: datasource=helm depName=kube-prometheus-stack registryUrl=https://prometheus-community.github.io/helm-charts
PrometheusOperatorVersion = "80.14.4" // renovate: datasource=helm depName=kube-prometheus-stack registryUrl=https://prometheus-community.github.io/helm-charts

// ZookeeperOperatorVersion is the version of zookeeper-operator
ZookeeperOperatorVersion = "0.2.15-adobe-20250923" // renovate: datasource=docker depName=ghcr.io/adobe/helm-charts/zookeeper-operator
Expand Down
Loading