Rohit Yadav db7265a1f7 src: add apache v2.0 license header to files
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
2021-01-20 07:06:14 +05:30

138 lines
4.6 KiB
JavaScript

// 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.
export default {
name: 'cluster',
title: 'Clusters',
icon: 'cluster',
permission: [ 'listClustersMetrics', 'listClusters' ],
columns: [ 'name', 'state', 'clustertype', 'hypervisortype', 'hosts', 'cpuused', 'cpumaxdeviation', 'cpuallocated', 'cputotal', 'memoryused', 'memorymaxdeviation', 'memoryallocated', 'memorytotal', 'podname', 'zonename' ],
details: [ 'name', 'id', 'allocationstate', 'clustertype', 'hypervisortype', 'podname', 'zonename' ],
actions: [
{
api: 'addCluster',
icon: 'plus',
label: 'label.add.cluster',
listView: true,
args: ['zoneid', 'hypervisor', 'podid', 'clustername']
},
{
api: 'updateCluster',
icon: 'pause-circle',
label: 'label.action.enable.cluster',
dataView: true,
args: ['id'],
defaultArgs: { allocationstate: 'Disabled' },
show: (record) => { return record.allocationstate === 'Enabled' }
},
{
api: 'updateCluster',
icon: 'play-circle',
label: 'label.action.disable.cluster',
dataView: true,
args: [ 'id' ],
defaultArgs: { allocationstate: 'Enabled' },
show: (record) => { return record.allocationstate === 'Disabled' }
},
{
api: 'dedicateCluster',
icon: 'user-add',
label: 'label.dedicate.cluster',
dataView: true,
args: ['clusterid', 'domainid', 'account'],
show: (record) => { return !record.domainid }
},
{
api: 'releaseDedicatedCluster',
icon: 'user-delete',
label: 'label.release.dedicated.cluster',
dataView: true,
args: ['clusterid'],
show: (record) => { return record.domainid }
},
{
api: 'updateCluster',
icon: 'plus-square',
label: 'Manage Cluster',
dataView: true,
args: ['id'],
defaultArgs: { managedstate: 'Managed' },
show: (record) => { return record.clustertype === 'CloudManaged' && ['PrepareUnmanaged', 'Unmanaged'].includes(record.state) }
},
{
api: 'updateCluster',
icon: 'minus-square',
label: 'Unmanage Cluster',
dataView: true,
args: ['id'],
defaultArgs: { managedstate: 'Unmanaged' },
show: (record) => { return record.clustertype === 'CloudManaged' && record.state === 'Enabled' }
},
{
api: 'enableOutOfBandManagementForCluster',
icon: 'plus-circle',
label: 'label.outofbandmanagement.enable',
dataView: true,
args: ['clusterid'],
show: (record) => {
return !record.resourcedetails || !record.resourcedetails.outOfBandManagementEnabled ||
record.resourcedetails.outOfBandManagementEnabled === 'false'
}
},
{
api: 'disableOutOfBandManagementForCluster',
icon: 'minus-circle',
label: 'label.outofbandmanagement.disable',
dataView: true,
args: ['clusterid'],
show: (record) => {
return record.resourcedetails && record.resourcedetails.outOfBandManagementEnabled &&
record.resourcedetails.outOfBandManagementEnabled === 'true'
}
},
{
api: 'enableHAForCluster',
icon: 'eye',
label: 'label.ha.enable',
dataView: true,
args: ['clusterid'],
show: (record) => {
return !record.resourcedetails || !record.resourcedetails.resourceHAEnabled ||
record.resourcedetails.resourceHAEnabled === 'false'
}
},
{
api: 'disableHAForCluster',
icon: 'eye-invisible',
label: 'label.ha.disable',
dataView: true,
args: ['clusterid'],
show: (record) => {
return record.resourcedetails && record.resourcedetails.resourceHAEnabled &&
record.resourcedetails.resourceHAEnabled === 'true'
}
},
{
api: 'deleteCluster',
icon: 'delete',
label: 'label.action.delete.cluster',
dataView: true,
args: ['id']
}
]
}