Skip to content

Commit 3e7942e

Browse files
chore(deps): update all non-major dependencies (master) (#279)
* chore(deps): update all non-major dependencies * Fix formatting command syntax in wait-for-envoy-sidecar.sh --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Adrian Muraru <amuraru@adobe.com>
1 parent dc4c7ac commit 3e7942e

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.26@sha256:079e59808d2d252516e27e3f3a9c003740dee7f75e55aa71528766d52bcfc16a AS builder
2+
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.26@sha256:6cd10a6fcc5eadd62008fc2ad8056b38971cafd42f44d55297f18be8adc86410 AS builder
33

44
ARG BUILDPLATFORM
55
ARG TARGETPLATFORM

api/v1beta1/kafkacluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const (
6464
DefaultMonitorImage = "ghcr.io/adobe/koperator/jmx-javaagent:1.5.0" // renovate: datasource=docker depName=ghcr.io/adobe/koperator/jmx-javaagent
6565

6666
// DefaultEnvoyImage is the default Envoy proxy image used when users don't specify it in EnvoyConfig.Image
67-
DefaultEnvoyImage = "envoyproxy/envoy:v1.38.3" // renovate: datasource=docker depName=envoyproxy/envoy
67+
DefaultEnvoyImage = "envoyproxy/envoy:v1.39.0" // renovate: datasource=docker depName=envoyproxy/envoy
6868

6969
// ControllerNodeProcessRole represents the node is a controller node
7070
ControllerNodeProcessRole = "controller"

docker/jmx_exporter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG JMX_EXPORTER_VERSION=v1.6.0 # renovate: datasource=github-releases depName=prometheus/jmx_exporter
22

3-
FROM maven:3-amazoncorretto-21@sha256:cb0791f5fbbb01bec717ed7bcf217b2356fe46e25de16115566c96bcbb6fe343 AS build
3+
FROM maven:3-amazoncorretto-21@sha256:a7f84ee223e9b6a1ba462667cdb98e282adf79d02fbd1ad3091ad0bb2feff1d7 AS build
44
ARG JMX_EXPORTER_VERSION
55

66
# Install wget to download the release tarball

docker/kafka/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN apk add --no-cache gnupg wget && \
3434

3535

3636
# backported from https://github.com/docker-library/openjdk/blob/master/18/jdk/slim-bullseye/Dockerfile
37-
FROM debian:bullseye-slim@sha256:f18adf4e1d04b1d8ba48025b8e35003f4c748ddd3dd8e875fe4e7d9a9c0dec84
37+
FROM debian:bullseye-slim@sha256:f313b4bd62667092a59b3a664d7d3ab8b5e65f41675f48e81455a15dc5abe792
3838

3939
ARG scala_version
4040
ARG KAFKA_VERSION

docs/examples/springboot-kafka-avro/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3.9-eclipse-temurin-21-alpine@sha256:d88e5b38297858f65f97bc7e7964c760ab988fd18ace41589176f1468c49a489 as build
1+
FROM maven:3.9-eclipse-temurin-21-alpine@sha256:d6390509b774df0a07d009a194a020aeff9c715afe1e3d2cd5ecb3bf6344700f as build
22

33
# Set working directory
44
WORKDIR /usr/src/myapp

hack/kafka-test-pod/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.26@sha256:079e59808d2d252516e27e3f3a9c003740dee7f75e55aa71528766d52bcfc16a as builder
1+
FROM golang:1.26@sha256:6cd10a6fcc5eadd62008fc2ad8056b38971cafd42f44d55297f18be8adc86410 as builder
22

33
WORKDIR /workspace
44

pkg/resources/kafka/wait-for-envoy-sidecar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if [[ -n "${CLUSTER_ID}" ]]; then
3737
# If the storage is already formatted (e.g. broker restarts), the kafka-storage.sh will skip formatting for that storage
3838
# thus we can safely run the storage format command regardless if the storage has been formatted or not
3939
echo "Formatting KRaft storage with cluster ID ${CLUSTER_ID}"
40-
${KAFKA_HOME}/bin/kafka-storage.sh format --cluster-id "${CLUSTER_ID}" --ignore-formatted -c /config/broker-config
40+
${KAFKA_HOME}/bin/kafka-storage.sh format --cluster-id="${CLUSTER_ID}" --ignore-formatted -c /config/broker-config
4141

4242
# Adding or removing controller nodes to the Kafka cluster would trigger cluster rolling upgrade so all the nodes in the cluster are aware of the newly added/removed controllers.
4343
# When this happens, Kafka's local quorum state file would be outdated since it is static and the Kafka server can't be started with conflicting controllers info (compared to info stored in ConfigMap),

tests/e2e/versions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package e2e
1919
// These versions are monitored by Renovate for automatic updates
2020
const (
2121
// CertManagerVersion is the version of cert-manager Helm chart
22-
CertManagerVersion = "v1.21.0" // renovate: datasource=helm depName=cert-manager registryUrl=https://charts.jetstack.io
22+
CertManagerVersion = "v1.21.1" // renovate: datasource=helm depName=cert-manager registryUrl=https://charts.jetstack.io
2323

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

0 commit comments

Comments
 (0)