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}