Update node problem detector image to v0.8.15

Change-Id: Iee97b968bb0fad03d08f190b692ef7d23d4052d1
This commit is contained in:
Alexey Odinokov 2024-02-29 15:47:44 -06:00
parent b5f55ff69e
commit 9bcdb3c086
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

@ -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}