From 2d307a06af06bcdf9a827d1b6ea3f4f2c88a9748 Mon Sep 17 00:00:00 2001 From: Shivkumar13 Date: Fri, 24 Nov 2023 16:01:54 +0530 Subject: [PATCH] 4.13 cluster install test from CI/PR --- pkg/util/version/const.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkg/util/version/const.go b/pkg/util/version/const.go index 4b80f3ae51f..d1e2009042c 100644 --- a/pkg/util/version/const.go +++ b/pkg/util/version/const.go @@ -31,7 +31,7 @@ type Stream struct { } // DefaultMinorVersion describes the minor OpenShift version to default to -var DefaultMinorVersion = 12 +var DefaultMinorVersion = 13 // DefaultInstallStreams describes the latest version of our supported streams var DefaultInstallStreams = map[int]*Stream{ @@ -43,6 +43,10 @@ var DefaultInstallStreams = map[int]*Stream{ Version: NewVersion(4, 12, 25), PullSpec: "quay.io/openshift-release-dev/ocp-release@sha256:5a4fb052cda1d14d1e306ce87e6b0ded84edddaa76f1cf401bcded99cef2ad84", }, + 13: { + Version: NewVersion(4, 13, 16), + PullSpec: "quay.io/openshift-release-dev/ocp-release@sha256:f0fbac5877e6d0671177fa0f523deb195e8742a5d49bc377b18704ba252a14d0", + }, } // DefaultInstallStream describes stream we are defaulting to for all new clusters @@ -54,7 +58,7 @@ var AvailableInstallStreams = []*Stream{ Version: NewVersion(4, 11, 26), PullSpec: "quay.io/openshift-release-dev/ocp-release@sha256:1c3913a65b0a10b4a0650f54e545fe928360a94767acea64c0bd10faa52c945a", }, - DefaultInstallStreams[12], + DefaultInstallStreams[13], } // FluentbitImage contains the location of the Fluentbit container image