Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Proxmox plugin and logos. #804

Merged
merged 3 commits into from
Mar 18, 2024
Merged
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 @@ -106,6 +106,12 @@ const conf: Config = {
requiredFields: ["import_datacenter"],
relistFields: ["import_cluster", "migr_minion_cluster"],
},
{
name: "proxmox",
types: ["destination"],
requiredFields: ["import_node"],
relistFields: ["linux_template", "windows_template"],
},
],

/*
Expand All @@ -128,6 +134,7 @@ const conf: Config = {
olvm: 3,
opca: 3,
o3c: 3,
proxmox: 3,
rhev: 3,
metal: 4,
lxd: 4,
Expand All @@ -150,6 +157,7 @@ const conf: Config = {
metal: "Bare Metal",
rhev: "Red Hat",
lxd: "LXD",
proxmox: "Proxmox VE",
},

// The list of providers for which to disable setting the 'Execute Now Options' field
Expand Down
121 changes: 121 additions & 0 deletions server/api/resources/providerLogos/proxmox-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.
19 changes: 19 additions & 0 deletions server/api/resources/providerLogos/proxmox-128.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
106 changes: 106 additions & 0 deletions server/api/resources/providerLogos/proxmox-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.
106 changes: 106 additions & 0 deletions server/api/resources/providerLogos/proxmox-32.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
106 changes: 106 additions & 0 deletions server/api/resources/providerLogos/proxmox-42.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
106 changes: 106 additions & 0 deletions server/api/resources/providerLogos/proxmox-64.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/@types/Providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export type ProviderTypes =
| "opca"
| "o3c"
| "oracle_vm"
| "proxmox"
| "vmware_vsphere"
| "aws"
| "oci"
Expand Down
42 changes: 42 additions & 0 deletions src/plugins/proxmox/OptionsSchemaPlugin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
Copyright (C) 2021 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 import node field first
if (f1.name === "import_node") {
return -1;
}
if (f2.name === "import_node") {
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 @@ -38,6 +38,9 @@ export const PROVIDERS_MOCK: Providers = {
olvm: {
types: [],
},
proxmox: {
types: [],
},
kubevirt: {
types: [],
},
Expand Down
Loading