diff --git a/.github/actions/cmx-versions/dist/index.js b/.github/actions/cmx-versions/dist/index.js index d42c4732a3..8e305f7281 100644 --- a/.github/actions/cmx-versions/dist/index.js +++ b/.github/actions/cmx-versions/dist/index.js @@ -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) => { diff --git a/.github/actions/cmx-versions/index.js b/.github/actions/cmx-versions/index.js index bca306b1e9..526e672510 100644 --- a/.github/actions/cmx-versions/index.js +++ b/.github/actions/cmx-versions/index.js @@ -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) => {