From dc99a291fb6d16bf65e4d74891e5af16f097c5ed Mon Sep 17 00:00:00 2001 From: "Ritchie, Frank (fr801x)" Date: Mon, 14 Oct 2024 13:40:14 -0400 Subject: [PATCH] Update node problem detector Update node problem detector to 0.8.16 which is built with golang.org/x/net v0.21.0 and therefore compatible with cve-2023-44487. The cve requires v0.17.0 or higher of golng.org/x/net/http2. https://github.com/kubernetes/node-problem-detector/blob/v0.8.16/go.mod#L83 Change-Id: I779799b2c45d0569058068fe5bf3251ed2c98ffc --- node-problem-detector/Dockerfile.ubuntu_focal | 2 +- node-problem-detector/Dockerfile.ubuntu_jammy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node-problem-detector/Dockerfile.ubuntu_focal b/node-problem-detector/Dockerfile.ubuntu_focal index 53f464fe..eacac4a5 100644 --- a/node-problem-detector/Dockerfile.ubuntu_focal +++ b/node-problem-detector/Dockerfile.ubuntu_focal @@ -1,7 +1,7 @@ ARG FROM=docker.io/ubuntu:focal FROM ${FROM} -ARG NPD_VERSION="v0.8.14" +ARG NPD_VERSION="v0.8.16" ARG NPD_SRC_URL="https://github.com/kubernetes/node-problem-detector/releases/download/${NPD_VERSION}" RUN apt-get update ;\ diff --git a/node-problem-detector/Dockerfile.ubuntu_jammy b/node-problem-detector/Dockerfile.ubuntu_jammy index 53cce6db..9a98a788 100644 --- a/node-problem-detector/Dockerfile.ubuntu_jammy +++ b/node-problem-detector/Dockerfile.ubuntu_jammy @@ -1,7 +1,7 @@ ARG FROM=docker.io/ubuntu:jammy FROM ${FROM} -ARG NPD_VERSION="v0.8.15" +ARG NPD_VERSION="v0.8.16" ARG NPD_SRC_URL="https://github.com/kubernetes/node-problem-detector/releases/download/${NPD_VERSION}" RUN apt-get update ;\