From ec2fdfdc4e9e71a066b9672f5a2f87147f4a6b4a Mon Sep 17 00:00:00 2001 From: Anjan Nath Date: Mon, 6 Mar 2023 21:56:34 +0530 Subject: [PATCH] bump openshift version to 4.12.5 and update bundle hash --- Makefile | 2 +- pkg/crc/machine/bundle/constants.go | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index d5707ca1a9..b58e116d5f 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ all: install SHELL := /bin/bash -OPENSHIFT_VERSION ?= 4.12.1 +OPENSHIFT_VERSION ?= 4.12.5 PODMAN_VERSION ?= 4.3.1 OKD_VERSION ?= 4.12.0-0.okd-2023-02-18-033438 BUNDLE_EXTENSION = crcbundle diff --git a/pkg/crc/machine/bundle/constants.go b/pkg/crc/machine/bundle/constants.go index 6fef61586a..830f56d5c2 100644 --- a/pkg/crc/machine/bundle/constants.go +++ b/pkg/crc/machine/bundle/constants.go @@ -8,23 +8,23 @@ import ( var bundleLocations = map[string]bundlesDownloadInfo{ "amd64": { "darwin": { - preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.1/crc_vfkit_4.12.1_amd64.crcbundle", - "b73f2740cfa13d5abbf131907dd7be8ad9a48c3c14b174b23b3970247c474a4d"), + preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.5/crc_vfkit_4.12.5_amd64.crcbundle", + "7a691040952b138b200d8bd7dd57ba352ba99f0c4006c976b3660bf7e2d5ccc0"), }, "linux": { - preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.1/crc_libvirt_4.12.1_amd64.crcbundle", - "e4cdb4ba53590150a02db0c471264120481a84b84578252551264d451d4ca4f7"), + preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.5/crc_libvirt_4.12.5_amd64.crcbundle", + "12797290dda62930f65e74fd12b8d634ef4d265f50ec708563f37b91ad68edc6"), }, "windows": { - preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.1/crc_hyperv_4.12.1_amd64.crcbundle", - "c5e53fd81f1ad7b280d80fdca1b8ccba9048faeec1b97115fee64f6913fc01fc"), + preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.5/crc_hyperv_4.12.5_amd64.crcbundle", + "f49945f40c9f219845d2086b66fcc29cbca3b8490bf6319d2a40f4e3e7bd1ad8"), }, }, "arm64": { "darwin": { - preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.1/crc_vfkit_4.12.1_arm64.crcbundle", - "594bb86484b92325566b2ac3fd05b5c79b24e24b18c74d4e4e4498385359e6b9"), + preset.OpenShift: download.NewRemoteFile("https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.5/crc_vfkit_4.12.5_arm64.crcbundle", + "f89fc8fa21c762e8e483575950bef5b2aa62e575df6ed0fb76051258ef6352e5"), }, }, }