From 38e097718e6ca97e7ef162e1cdf6f81f1cae6a16 Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Thu, 15 Jun 2023 17:29:09 -0400 Subject: [PATCH] Update catalog and opm version to 4.12 Signed-off-by: Leo Christy Jesuraj --- ebcDockerBuilderRCO.jenkinsfile | 2 +- index.Dockerfile | 2 +- scripts/installers/install-opm.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ebcDockerBuilderRCO.jenkinsfile b/ebcDockerBuilderRCO.jenkinsfile index 9551ded2..425bbe0d 100644 --- a/ebcDockerBuilderRCO.jenkinsfile +++ b/ebcDockerBuilderRCO.jenkinsfile @@ -11,7 +11,7 @@ properties([ string(name: 'command', defaultValue: "make build-operator-pipeline REGISTRY=cp.stg.icr.io", description: 'Build command to execute on target arch machine, e.g. make build-pipeline-releases'), string(name: 'PIPELINE_OPERATOR_IMAGE', defaultValue: "cp/runtime-component-operator", description: 'namespace to push image to in registry'), string(name: 'RELEASE_TARGET', defaultValue: "main", description: 'release branch to use'), - string(name: 'OPM_VERSION', defaultValue: "4.10", description: 'Redhat CLI OPM version'), + string(name: 'OPM_VERSION', defaultValue: "4.12", description: 'Redhat CLI OPM version'), string(name: 'PIPELINE_PRODUCTION_IMAGE', defaultValue: "icr.io/cpopen/runtime-component-operator", description: 'namespace in prod registry'), string(name: 'REDHAT_BASE_IMAGE', defaultValue: "registry.redhat.io/openshift4/ose-operator-registry", description: 'base image for operator'), string(name: 'REDHAT_REGISTRY', defaultValue: "registry.redhat.io", description: 'RH registry used for docker login'), diff --git a/index.Dockerfile b/index.Dockerfile index 28b66c5a..b9a9ed8e 100644 --- a/index.Dockerfile +++ b/index.Dockerfile @@ -1,4 +1,4 @@ -FROM registry.redhat.io/openshift4/ose-operator-registry:v4.10 AS builder +FROM registry.redhat.io/openshift4/ose-operator-registry:v4.12 AS builder FROM registry.redhat.io/ubi8/ubi-minimal diff --git a/scripts/installers/install-opm.sh b/scripts/installers/install-opm.sh index 4f450e58..7df53567 100755 --- a/scripts/installers/install-opm.sh +++ b/scripts/installers/install-opm.sh @@ -9,7 +9,7 @@ main() { exit 0 fi - readonly DEFAULT_RELEASE_VERSION=latest-4.10 + readonly DEFAULT_RELEASE_VERSION=latest-4.12 readonly RELEASE_VERSION=${1:-$DEFAULT_RELEASE_VERSION} readonly base_url="https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/${RELEASE_VERSION}"