Skip to content

Commit 0b8843b

Browse files
NMS- 17729: Update the Base image for Opennms-core, Minion and sentinel from ubi9-3.5.3.b283-jre-17 to bi9-3.5.3.b286-jre-17 (#7675)
* separated 2 jobs Scan-image-trivy and trivy-analyze * Triggered trivy scan * enabled trivy-analyze * Added trivy-analyze job * Added trivy-analyze job to trigger in all * Update horizon-image-single-arch-linux-amd64-trivy.yml * Update horizon-image-single-arch-trivy.yml * Update minion-image-single-arch-linux-amd64-trivy.yml * Update minion-image-single-arch-trivy.yml * Update sentinel-image-single-arch-linux-amd64-trivy.yml * Update sentinel-image-single-arch-trivy.yml * Added checks to see if file exists or not in artifacts * Changes for scan-image-trivy file * Changes for scan-image-trivy file * Removed trivy-analyze from build-trigger.override.json file * renamed build-triggers.override.json file * renamed build-triggers.override.json file * Modified Base image from deploy-base:ubi9-3.5.2.b282-jre-17 to deploy-base:ubi9-3.5.3.b286-jre-17
1 parent ada1306 commit 0b8843b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

opennms-container/common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ endif
1212
VERSION := $(shell ../../.circleci/scripts/pom2version.sh ../../pom.xml)
1313
SHELL := /bin/bash -o nounset -o pipefail -o errexit
1414
BUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
15-
BASE_IMAGE := opennms/deploy-base:ubi9-3.5.2.b283-jre-17
15+
BASE_IMAGE := opennms/deploy-base:ubi9-3.5.3.b286-jre-17
1616
DOCKER_CLI_EXPERIMENTAL := enabled
1717
DOCKER_REGISTRY := docker.io
1818
DOCKER_ORG := opennms

opennms-container/core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
##
2424
# Use Java base image and setup required RPMs as cacheable image.
2525
##
26-
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.2.b283-jre-17"
26+
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.3.b286-jre-17"
2727

2828
FROM ${BASE_IMAGE} AS core-tarball
2929

opennms-container/minion/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# To avoid issues, we rearrange the directories in pre-stage to avoid injecting these
2727
# as additional layers into the final image.
2828
##
29-
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.2.b283-jre-17"
29+
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.3.b286-jre-17"
3030

3131
FROM ${BASE_IMAGE} AS minion-base
3232

opennms-container/sentinel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
##
2424
# Use Java base image and setup required RPMs as cacheable image.
2525
##
26-
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.2.b283-jre-17"
26+
ARG BASE_IMAGE="opennms/deploy-base:ubi9-3.5.3.b286-jre-17"
2727

2828
FROM ${BASE_IMAGE} AS sentinel-tarball
2929

smoke-test/src/main/java/org/opennms/smoketest/containers/MockCloudContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class MockCloudContainer extends GenericContainer<MockCloudContainer> {
4444
private static final Path CLOUD_MOCK_PATH_CONTAINER = Path.of("/").resolve(CLOUD_MOCK_PATH_HOST.getFileName());
4545
private static final String CLOUD_MOCK_MAIN = "org.opennms.plugins.cloud.ittest.MockCloudMain";
4646
public MockCloudContainer() {
47-
super(DockerImageName.parse("opennms/deploy-base:ubi9-3.5.2.b283-jre-17"));
47+
super(DockerImageName.parse("opennms/deploy-base:ubi9-3.5.3.b286-jre-17"));
4848
withCopyFileToContainer(MountableFile.forHostPath(CLOUD_MOCK_PATH_HOST), CLOUD_MOCK_PATH_CONTAINER.toString())
4949
.withCommand("/usr/bin/java", "-cp", CLOUD_MOCK_PATH_CONTAINER.toString(), CLOUD_MOCK_MAIN)
5050
.withExposedPorts(PORT)

0 commit comments

Comments
 (0)