From 9bcdb3c08674fc0cf4f460aa69921c3e417ca760 Mon Sep 17 00:00:00 2001 From: Alexey Odinokov Date: Thu, 29 Feb 2024 15:47:44 -0600 Subject: [PATCH] Update node problem detector image to v0.8.15 Change-Id: Iee97b968bb0fad03d08f190b692ef7d23d4052d1 --- node-problem-detector/Dockerfile.ubuntu_bionic | 2 +- node-problem-detector/Dockerfile.ubuntu_focal | 2 +- node-problem-detector/build.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/node-problem-detector/Dockerfile.ubuntu_bionic b/node-problem-detector/Dockerfile.ubuntu_bionic index 5d5b474c..68ddaf76 100644 --- a/node-problem-detector/Dockerfile.ubuntu_bionic +++ b/node-problem-detector/Dockerfile.ubuntu_bionic @@ -1,7 +1,7 @@ ARG FROM=docker.io/ubuntu:bionic FROM ${FROM} -ARG NPD_VERSION="v0.8.10" +ARG NPD_VERSION="v0.8.15" 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_focal b/node-problem-detector/Dockerfile.ubuntu_focal index 2a207621..1ccd32a1 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.10" +ARG NPD_VERSION="v0.8.15" 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/build.sh b/node-problem-detector/build.sh index 620aa0bc..13acfdee 100755 --- a/node-problem-detector/build.sh +++ b/node-problem-detector/build.sh @@ -10,7 +10,7 @@ DISTRO=${DISTRO:-ubuntu_focal} REGISTRY_URI=${REGISTRY_URI:-"openstackhelm/"} EXTRA_TAG_INFO=${EXTRA_TAG_INFO:-""} -NPD_VERSION=${NPD_VERSION:-v0.8.10} +NPD_VERSION=${NPD_VERSION:-v0.8.15} docker build -f ${IMAGE}/Dockerfile.${DISTRO} --network=host -t ${REGISTRY_URI}${IMAGE}:${VERSION}-${DISTRO}${EXTRA_TAG_INFO} ${extra_build_args} ${IMAGE}