Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Draft] 4.12 cluster installation test from CI/PR #3063

Closed
wants to merge 4 commits into from
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion pkg/util/version/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const (
var GitCommit = "unknown"

// DefaultMinorVersion describes the minor OpenShift version to default to
var DefaultMinorVersion = 11
var DefaultMinorVersion = 12

// DefaultInstallStreams describes the latest version of our supported streams
var DefaultInstallStreams = map[int]*Stream{
Expand All @@ -38,6 +38,10 @@ var DefaultInstallStreams = map[int]*Stream{
Version: NewVersion(4, 11, 44),
PullSpec: "quay.io/openshift-release-dev/ocp-release@sha256:52cbfbbeb9cc03b49c2788ac7333e63d3dae14673e01a9d8e59270f3a8390ed3",
},
12: {
Version: NewVersion(4, 12, 17),
PullSpec: "quay.io/openshift-release-dev/ocp-release@sha256:7ca5f8aa44bbc537c5a985a523d87365eab3f6e72abc50b7be4caae741e093f4",
},
tiguelu marked this conversation as resolved.
Show resolved Hide resolved
}

// DefaultInstallStream describes stream we are defaulting to for all new clusters
Expand All @@ -58,6 +62,11 @@ var HiveInstallStreams = []*Stream{
Version: NewVersion(4, 11, 26),
PullSpec: "quay.io/openshift-release-dev/ocp-release@sha256:1c3913a65b0a10b4a0650f54e545fe928360a94767acea64c0bd10faa52c945a",
},
DefaultInstallStreams[12],
{
Version: NewVersion(4, 12, 24),
PullSpec: "quay.io/openshift-release-dev/ocp-release@sha256:84a7b73f5393c8225c42edf214c82a8d00037a087222c5548ad1ed1b35cedb0e",
},
}

// UpgradeStreams describes list of streams we support for upgrades
Expand Down