Skip to content

Commit

Permalink
exclude 4.10.0-okd
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig O'Donnell committed Oct 9, 2023
1 parent 54b511c commit ac03f1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/actions/cmx-versions/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7666,11 +7666,10 @@ async function getClusterVersions() {
return;
}

// if (distroName === 'aks') {
// // excluding aks for now
// // TODO: add aks back in when we support some sort of filtering
// return;
// }
if (distroName === 'openshift') {
// it was recommended to exclude 4.10.0-okd from testing for now
distribution.versions = distribution.versions.filter((v) => v !== '4.10.0-okd');
}

const latestMinorVersions = {};
distribution.versions.forEach((version) => {
Expand Down
9 changes: 4 additions & 5 deletions .github/actions/cmx-versions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ async function getClusterVersions() {
return;
}

// if (distroName === 'aks') {
// // excluding aks for now
// // TODO: add aks back in when we support some sort of filtering
// return;
// }
if (distroName === 'openshift') {
// it was recommended to exclude 4.10.0-okd from testing for now
distribution.versions = distribution.versions.filter((v) => v !== '4.10.0-okd');
}

const latestMinorVersions = {};
distribution.versions.forEach((version) => {
Expand Down

0 comments on commit ac03f1c

Please sign in to comment.