| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /*
- Copyright (C) 2017 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 { WizardPage } from "./@types/WizardData";
- export type NavigationMenuType = {
- label: string;
- value: string;
- hidden?: boolean;
- requiresAdmin?: boolean;
- };
- export const navigationMenu: NavigationMenuType[] = [
- { label: "Dashboard", value: "dashboard" },
- { label: "Transfers", value: "transfers" },
- { label: "Deployments", value: "deployments" },
- { label: "Cloud Endpoints", value: "endpoints" },
- { label: "Minion Pools", value: "minion-pools" },
- { label: "Bare Metal Servers", value: "bare-metal-servers" },
- // Optional pages
- { label: "Planning", value: "planning" },
- // User management pages
- { label: "Projects", value: "projects", requiresAdmin: true },
- { label: "Users", value: "users", requiresAdmin: true },
- { label: "Logs", value: "logging", requiresAdmin: true },
- ];
- // https://github.com/cloudbase/coriolis/blob/master/coriolis/constants.py
- export const providerTypes = {
- TARGET_TRANSFER: 4,
- SOURCE_TRANSFER: 8,
- CONNECTION: 16,
- DESTINATION_OPTIONS: 512,
- SOURCE_OPTIONS: 131072,
- STORAGE: 32768,
- SOURCE_UPDATE: 65536,
- TARGET_UPDATE: 262144,
- SOURCE_MINION_POOL: 524288,
- DESTINATION_MINION_POOL: 1048576,
- };
- export const loginButtons = [
- // {
- // name: 'Google',
- // id: 'google',
- // url: '',
- // },
- ];
- export const executionOptions = [
- {
- name: "shutdown_instances",
- type: "boolean",
- label: "Shutdown Instance(s)",
- defaultValue: false,
- nullableBoolean: false,
- description:
- "When enabling this option, Coriolis will attempt to gracefully shut down the source instance(s), before syncing their data. This is recommended when executing Migrations, right before planning on completely Deploying on the destination cloud, as it will transfer the last chunks of data after the instance(s) have been shut down, and it leaves the source instance(s) off.",
- },
- {
- name: "auto_deploy",
- type: "boolean",
- label: "Auto Deploy",
- defaultValue: false,
- nullableBoolean: false,
- description:
- "When enabled, the transfer will automatically deploy the instances on the destination cloud after the transfer is complete.",
- },
- ];
- export const executeOptionsWithExecuteNow = [
- ...executionOptions,
- {
- name: "execute_now",
- type: "boolean",
- label: "Execute Now",
- defaultValue: true,
- nullableBoolean: false,
- description:
- "When enabled, the transfer will be executed immediately after the options are configured.",
- },
- ];
- export const deploymentFields = [
- {
- name: "clone_disks",
- type: "boolean",
- label: "Clone Disks",
- defaultValue: true,
- nullableBoolean: false,
- description:
- "When enabled, the disks will be cloned during the deployment.",
- },
- {
- name: "skip_os_morphing",
- type: "boolean",
- label: "Skip OS Morphing",
- defaultValue: false,
- nullableBoolean: false,
- description:
- "When enabled, OS morphing will be skipped during the deployment.",
- },
- ];
- export const wizardPages: WizardPage[] = [
- { id: "type", title: "New", breadcrumb: "Type" },
- {
- id: "source",
- title: "Select your source cloud",
- breadcrumb: "Source Cloud",
- },
- {
- id: "source-options",
- title: "Source options",
- breadcrumb: "Source Options",
- },
- { id: "vms", title: "Select instances", breadcrumb: "Select VMs" },
- {
- id: "target",
- title: "Select your target cloud",
- breadcrumb: "Target Cloud",
- },
- { id: "dest-options", title: "Target options", breadcrumb: "Target Options" },
- { id: "networks", title: "Networks", breadcrumb: "Networks" },
- { id: "storage", title: "Storage Mapping", breadcrumb: "Storage" },
- {
- id: "scripts",
- title: "User Scripts",
- breadcrumb: "Scripts",
- },
- {
- id: "schedule",
- title: "Schedule",
- breadcrumb: "Schedule",
- },
- { id: "execute", title: "Transfer Execution options", breadcrumb: "Execute" },
- { id: "summary", title: "Summary", breadcrumb: "Summary" },
- ];
- export const basename = process.env.PUBLIC_PATH;
- export const LEGAL_URLS = {
- eula: "https://cloudbase.it/coriolis-eula/",
- privacy: " https://cloudbase.it/privacy/",
- };
|