// Copyright 2021 99cloud // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import React from 'react'; import { inject, observer } from 'mobx-react'; import globalServerGroupStore from 'stores/nova/server-group'; import { ModalAction } from 'containers/Action'; import policyType from 'resources/nova/server-group'; export class Create extends ModalAction { static id = 'create'; static title = t('Create Server Group'); init() { this.store = globalServerGroupStore; } get name() { return t('Create server group'); } static policy = 'os_compute_api:os-server-groups:create'; static allowed = () => Promise.resolve(true); get formItems() { const policies = Object.keys(policyType).map((it) => ({ value: it, label: policyType[it], })); return [ { name: 'name', label: t('Name'), type: 'input-name', placeholder: t('Please input name'), required: true, }, { name: 'policy', label: t('Policy'), type: 'select', placeholder: t('Please select policy'), options: policies, required: true, tip: (
{t('Affinity (mandatory):')}
{t( 'The instances in the affinity group are strictly allocated to the same physical machine. When there are no more physical machines to allocate, the allocation fails.' )}
{t('Anti-affinity (mandatory):')}
{t( 'The instances in the anti-affinity group are strictly allocated to different physical machines. When there are no more physical machines to allocate, the allocation fails.' )}
{t('Affinity (not mandatory):')}
{t( 'The instances in the affinity group are allocated to the same physical machine as much as possible, and when there are no more physical machines to allocate, the normal allocation strategy is returned.' )}
{t('Anti-affinity (not mandatory):')}
{t( 'The instances in the anti-affinity group are allocated to different physical machines as much as possible. When there are no more physical machines to allocate, the normal allocation strategy is returned.' )}