Skip to content

Commit

Permalink
disable aks for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig O'Donnell committed Oct 3, 2023
1 parent 082a3d9 commit 0389ccf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/actions/cmx-versions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ async function getClusterVersions() {
return;
}

if (distroName === 'aks') {
// excluding aks for now
// TODO: add aks back in when we support some sort of filtering
return;
}

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

0 comments on commit 0389ccf

Please sign in to comment.