Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ const conf: Config = {
types: ["destination"],
requiredFields: ["cluster"],
},
{
name: "cloudstack",
types: ["destination"],
requiredFields: ["zone"],
relistFields: ["linux_template", "windows_template"],
},
],

/*
Expand Down Expand Up @@ -170,6 +176,7 @@ const conf: Config = {
metal: 4,
lxd: 4,
libvirt: 4,
cloudstack: 4,
},

providerNames: {
Expand All @@ -193,6 +200,7 @@ const conf: Config = {
lxd: "LXD",
proxmox: "Proxmox VE",
libvirt: "Libvirt",
cloudstack: "Cloudstack",
},

// The list of providers for which to disable setting the 'Execute Now Options' field
Expand Down
363 changes: 363 additions & 0 deletions server/api/resources/providerLogos/cloudstack-128-disabled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
362 changes: 362 additions & 0 deletions server/api/resources/providerLogos/cloudstack-128.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
207 changes: 207 additions & 0 deletions server/api/resources/providerLogos/cloudstack-32-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
206 changes: 206 additions & 0 deletions server/api/resources/providerLogos/cloudstack-32.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
207 changes: 207 additions & 0 deletions server/api/resources/providerLogos/cloudstack-42.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
363 changes: 363 additions & 0 deletions server/api/resources/providerLogos/cloudstack-64.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/@types/Providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export type ProviderTypes =
| "metal"
| "rhev"
| "lxd"
| "libvirt";
| "libvirt"
| "cloudstack";

export type Providers = {
[provider in ProviderTypes]: {
Expand Down
42 changes: 42 additions & 0 deletions src/plugins/cloudstack/OptionsSchemaPlugin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
Copyright (C) 2026 Cloudbase Solutions SRL
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

import type { Field } from "@src/@types/Field";
import type { SchemaProperties, SchemaDefinitions } from "@src/@types/Schema";
import OptionsSchemaPluginBase from "../default/OptionsSchemaPlugin";

export default class OptionsSchemaParser extends OptionsSchemaPluginBase {
override parseSchemaToFields(opts: {
schema: SchemaProperties;
schemaDefinitions?: SchemaDefinitions | null | undefined;
dictionaryKey?: string;
requiresWindowsImage?: boolean;
}) {
return super.parseSchemaToFields(opts);
}

override sortFields(fields: Field[]) {
super.sortFields(fields);
fields.sort((f1, f2) => {
// sort zone field first
if (f1.name === "zone") {
return -1;
}
if (f2.name === "zone") {
return 1;
}
return 0;
});
}
}
3 changes: 3 additions & 0 deletions tests/mocks/ProvidersMock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,7 @@ export const PROVIDERS_MOCK: Providers = {
vhi: {
types: [],
},
cloudstack: {
types: [],
},
};
Loading