Skip to content

Commit

Permalink
fix: enable noble as kvm host (#5557)
Browse files Browse the repository at this point in the history
  • Loading branch information
r00ta authored Dec 10, 2024
1 parent 0a7f880 commit 0245ba2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const DeployFormFields = (): JSX.Element => {
);
const canBeKVMHost =
values.oSystem === "ubuntu" &&
["bionic", "focal", "jammy"].includes(values.release);
["bionic", "focal", "jammy", "noble"].includes(values.release);
const noImages = osystems.length === 0 || releases.length === 0;
const clearVmHostOptions = () => {
setDeployVmHost(false);
Expand Down

0 comments on commit 0245ba2

Please sign in to comment.