From 18e8a07f1a25c70f45ce3ad4cea3d50e6fa4f9ff Mon Sep 17 00:00:00 2001 From: "SPEARS, DUSTIN (ds443n)" Date: Mon, 4 Mar 2024 14:55:16 -0500 Subject: [PATCH] Change NPD version to v0.8.14 for Focal add Jammy image v0.8.15 is no longer compatible with focal base. Remove bionic and add jammy dockerfile. Change-Id: Ib1dbd351730aa3632aed06d848458b8879bc2879 --- .../{Dockerfile.ubuntu_bionic => Dockerfile.ubuntu_jammy} | 2 +- node-problem-detector/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename node-problem-detector/{Dockerfile.ubuntu_bionic => Dockerfile.ubuntu_jammy} (96%) diff --git a/node-problem-detector/Dockerfile.ubuntu_bionic b/node-problem-detector/Dockerfile.ubuntu_jammy similarity index 96% rename from node-problem-detector/Dockerfile.ubuntu_bionic rename to node-problem-detector/Dockerfile.ubuntu_jammy index 68ddaf76..53cce6db 100644 --- a/node-problem-detector/Dockerfile.ubuntu_bionic +++ b/node-problem-detector/Dockerfile.ubuntu_jammy @@ -1,4 +1,4 @@ -ARG FROM=docker.io/ubuntu:bionic +ARG FROM=docker.io/ubuntu:jammy FROM ${FROM} ARG NPD_VERSION="v0.8.15" diff --git a/node-problem-detector/build.sh b/node-problem-detector/build.sh index 13acfdee..c0e0e44b 100755 --- a/node-problem-detector/build.sh +++ b/node-problem-detector/build.sh @@ -6,7 +6,7 @@ cd ${SCRIPT_DIR}/.. IMAGE="node-problem-detector" VERSION=${VERSION:-latest} -DISTRO=${DISTRO:-ubuntu_focal} +DISTRO=${DISTRO:-ubuntu_jammy} REGISTRY_URI=${REGISTRY_URI:-"openstackhelm/"} EXTRA_TAG_INFO=${EXTRA_TAG_INFO:-""}