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
This commit is contained in:
Ritchie, Frank (fr801x) 2024-10-14 13:40:14 -04:00
parent 1c7c6aa7b9
commit dc99a291fb
2 changed files with 2 additions and 2 deletions

@ -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 ;\

@ -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 ;\