Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/clusters_list/mock_data.js')
-rw-r--r--spec/frontend/clusters_list/mock_data.js75
1 files changed, 44 insertions, 31 deletions
diff --git a/spec/frontend/clusters_list/mock_data.js b/spec/frontend/clusters_list/mock_data.js
index 9a90a378f31..48af3b91c94 100644
--- a/spec/frontend/clusters_list/mock_data.js
+++ b/spec/frontend/clusters_list/mock_data.js
@@ -1,57 +1,70 @@
export const clusterList = [
{
name: 'My Cluster 1',
- environmentScope: '*',
- size: '3',
- clusterType: 'group_type',
- status: 'disabled',
- cpu: '6 (100% free)',
- memory: '22.50 (30% free)',
+ environment_scope: '*',
+ cluster_type: 'group_type',
+ provider_type: 'gcp',
+ status: 'creating',
+ nodes: null,
},
{
name: 'My Cluster 2',
- environmentScope: 'development',
- size: '12',
- clusterType: 'project_type',
+ environment_scope: 'development',
+ cluster_type: 'project_type',
+ provider_type: 'aws',
status: 'unreachable',
- cpu: '3 (50% free)',
- memory: '11 (60% free)',
+ nodes: [
+ {
+ status: { allocatable: { cpu: '1930m', memory: '5777156Ki' } },
+ usage: { cpu: '246155922n', memory: '1255212Ki' },
+ },
+ ],
},
{
name: 'My Cluster 3',
- environmentScope: 'development',
- size: '12',
- clusterType: 'project_type',
+ environment_scope: 'development',
+ cluster_type: 'project_type',
+ provider_type: 'none',
status: 'authentication_failure',
- cpu: '1 (0% free)',
- memory: '22 (33% free)',
+ nodes: [
+ {
+ status: { allocatable: { cpu: '1930m', memory: '5777156Ki' } },
+ usage: { cpu: '246155922n', memory: '1255212Ki' },
+ },
+ {
+ status: { allocatable: { cpu: '1940m', memory: '6777156Ki' } },
+ usage: { cpu: '307051934n', memory: '1379136Ki' },
+ },
+ ],
},
{
name: 'My Cluster 4',
- environmentScope: 'production',
- size: '12',
- clusterType: 'project_type',
+ environment_scope: 'production',
+ cluster_type: 'project_type',
status: 'deleting',
- cpu: '6 (100% free)',
- memory: '45 (15% free)',
+ nodes: [
+ {
+ status: { allocatable: { cpu: '1missingCpuUnit', memory: '1missingMemoryUnit' } },
+ usage: { cpu: '1missingCpuUnit', memory: '1missingMemoryUnit' },
+ },
+ ],
},
{
name: 'My Cluster 5',
- environmentScope: 'development',
- size: '12',
- clusterType: 'project_type',
+ environment_scope: 'development',
+ cluster_type: 'project_type',
status: 'created',
- cpu: '6 (100% free)',
- memory: '20.12 (35% free)',
+ nodes: [
+ {
+ status: { allocatable: { cpu: '1missingCpuUnit', memory: '1missingMemoryUnit' } },
+ },
+ ],
},
{
name: 'My Cluster 6',
- environmentScope: '*',
- size: '1',
- clusterType: 'project_type',
+ environment_scope: '*',
+ cluster_type: 'project_type',
status: 'cleanup_ongoing',
- cpu: '6 (100% free)',
- memory: '20.12 (35% free)',
},
];