// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you 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 { shallowRef, defineAsyncComponent } from 'vue' import store from '@/store' export default { name: 'cluster', title: 'label.clusters', icon: 'cluster-outlined', docHelp: 'conceptsandterminology/concepts.html#about-clusters', permission: ['listClustersMetrics'], searchFilters: ['name', 'zoneid', 'podid', 'hypervisor'], columns: () => { const fields = ['name', 'state', 'allocationstate', 'clustertype', 'hypervisortype', 'hosts'] const metricsFields = ['cpuused', 'cpumaxdeviation', 'cpuallocated', 'cputotal', 'memoryused', 'memorymaxdeviation', 'memoryallocated', 'memorytotal', 'drsimbalance'] if (store.getters.metrics) { fields.push(...metricsFields) } fields.push('podname') fields.push('zonename') return fields }, details: ['name', 'id', 'allocationstate', 'clustertype', 'managedstate', 'hypervisortype', 'podname', 'zonename', 'drsimbalance'], related: [{ name: 'host', title: 'label.hosts', param: 'clusterid' }], resourceType: 'Cluster', filters: () => { const filters = ['enabled', 'disabled'] return filters }, tabs: [{ name: 'details', component: shallowRef(defineAsyncComponent(() => import('@/components/view/DetailsTab.vue'))) }, { name: 'resources', component: shallowRef(defineAsyncComponent(() => import('@/views/infra/Resources.vue'))) }, { name: 'settings', component: shallowRef(defineAsyncComponent(() => import('@/components/view/SettingsTab.vue'))) }, { name: 'drs', component: shallowRef(defineAsyncComponent(() => import('@/views/infra/ClusterDRSTab.vue'))) }, { name: 'comments', component: shallowRef(defineAsyncComponent(() => import('@/components/view/AnnotationsTab.vue'))) }, { name: 'events', resourceType: 'Cluster', component: shallowRef(defineAsyncComponent(() => import('@/components/view/EventsTab.vue'))), show: () => { return 'listEvents' in store.getters.apis } }], actions: [ { api: 'addCluster', icon: 'plus-outlined', label: 'label.add.cluster', docHelp: 'adminguide/installguide/configuration.html#adding-a-cluster', listView: true, popup: true, component: shallowRef(defineAsyncComponent(() => import('@/views/infra/ClusterAdd.vue'))) }, { api: 'updateCluster', icon: 'edit-outlined', label: 'label.edit', dataView: true, args: ['clustername'] }, { api: 'updateCluster', icon: 'play-circle-outlined', label: 'label.action.enable.cluster', message: 'message.action.enable.cluster', docHelp: 'adminguide/installguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters', dataView: true, defaultArgs: { allocationstate: 'Enabled' }, show: (record) => { return record.allocationstate === 'Disabled' } }, { api: 'updateCluster', icon: 'pause-circle-outlined', label: 'label.action.disable.cluster', message: 'message.action.disable.cluster', docHelp: 'adminguide/installguide/hosts.html#disabling-and-enabling-zones-pods-and-clusters', dataView: true, defaultArgs: { allocationstate: 'Disabled' }, show: (record) => { return record.allocationstate === 'Enabled' } }, { api: 'updateCluster', icon: 'plus-square-outlined', label: 'label.action.manage.cluster', message: 'message.action.manage.cluster', dataView: true, defaultArgs: { managedstate: 'Managed' }, show: (record) => { return record.managedstate !== 'Managed' } }, { api: 'updateCluster', icon: 'minus-square-outlined', label: 'label.action.unmanage.cluster', message: 'message.action.unmanage.cluster', dataView: true, defaultArgs: { managedstate: 'Unmanaged' }, show: (record) => { return record.managedstate === 'Managed' } }, { api: 'executeDRS', icon: 'gold-outlined', label: 'label.action.drs.cluster', message: 'message.action.drs.cluster', dataView: true, defaultArgs: { iterations: null }, args: ['iterations'], show: (record) => { return record.managedstate === 'Managed' } }, { api: 'enableOutOfBandManagementForCluster', icon: 'plus-circle-outlined', label: 'label.outofbandmanagement.enable', message: 'label.outofbandmanagement.enable', dataView: true, show: (record) => { return record?.resourcedetails?.outOfBandManagementEnabled === 'false' }, args: ['clusterid'], mapping: { clusterid: { value: (record) => { return record.id } } } }, { api: 'disableOutOfBandManagementForCluster', icon: 'minus-circle-outlined', label: 'label.outofbandmanagement.disable', message: 'label.outofbandmanagement.disable', dataView: true, show: (record) => { return !(record?.resourcedetails?.outOfBandManagementEnabled === 'false') }, args: ['clusterid'], mapping: { clusterid: { value: (record) => { return record.id } } } }, { api: 'enableHAForCluster', icon: 'eye-outlined', label: 'label.ha.enable', message: 'label.ha.enable', dataView: true, show: (record) => { return record?.resourcedetails?.resourceHAEnabled === 'false' }, args: ['clusterid'], mapping: { clusterid: { value: (record) => { return record.id } } } }, { api: 'disableHAForCluster', icon: 'eye-invisible-outlined', label: 'label.ha.disable', message: 'label.ha.disable', dataView: true, show: (record) => { return !(record?.resourcedetails?.resourceHAEnabled === 'false') }, args: ['clusterid'], mapping: { clusterid: { value: (record) => { return record.id } } } }, { api: 'startRollingMaintenance', icon: 'setting-outlined', label: 'label.start.rolling.maintenance', message: 'label.start.rolling.maintenance', dataView: true, args: ['timeout', 'payload', 'forced', 'clusterids'], mapping: { clusterids: { value: (record) => { return record.id } } } }, { api: 'deleteCluster', icon: 'delete-outlined', label: 'label.action.delete.cluster', message: 'message.action.delete.cluster', dataView: true } ] }