Skip to content

Commit

Permalink
set aks and openshift 4.10 as alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig O'Donnell committed Oct 10, 2023
1 parent 577a066 commit 0998aba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/actions/cmx-versions/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7686,8 +7686,11 @@ async function getClusterVersions() {

Object.keys(latestMinorVersions[distroName]).forEach((minorVersion) => {
let stage = 'stable';
if (distroName === 'openshift' && minorVersion === '4.10') {
stage = 'beta';

if (distroName === 'aks') {
stage = 'alpha';
} else if (distroName === 'openshift' && minorVersion === '4.10') {
stage = 'alpha';
}

versionsToTest.push({ distribution: distroName, version: latestMinorVersions[distroName][minorVersion], stage });
Expand Down
7 changes: 5 additions & 2 deletions .github/actions/cmx-versions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,11 @@ async function getClusterVersions() {

Object.keys(latestMinorVersions[distroName]).forEach((minorVersion) => {
let stage = 'stable';
if (distroName === 'openshift' && minorVersion === '4.10') {
stage = 'beta';

if (distroName === 'aks') {
stage = 'alpha';
} else if (distroName === 'openshift' && minorVersion === '4.10') {
stage = 'alpha';
}

versionsToTest.push({ distribution: distroName, version: latestMinorVersions[distroName][minorVersion], stage });
Expand Down

0 comments on commit 0998aba

Please sign in to comment.