Commit f5c7d8eb authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'cluster-list-show-memory' into 'master'

Show memory on clusters list

See merge request gitlab-org/gitlab!26781
parents e4e69acb 610b7fc5
......@@ -27,6 +27,10 @@ export default {
key: 'size',
label: __('Size'),
},
{
key: 'memory',
label: __('Total memory (GB)'),
},
{
key: 'clusterType',
label: __('Cluster level'),
......
......@@ -20858,6 +20858,9 @@ msgstr ""
msgid "Total issues"
msgstr ""
msgid "Total memory (GB)"
msgstr ""
msgid "Total test time for all commits/merges"
msgstr ""
......
......@@ -5,6 +5,7 @@ export default [
size: '3',
clusterType: 'group_type',
status: 'disabled',
memory: '22.50 (30% free)',
},
{
name: 'My Cluster 2',
......@@ -12,6 +13,7 @@ export default [
size: '12',
clusterType: 'project_type',
status: 'unreachable',
memory: '11 (60% free)',
},
{
name: 'My Cluster 3',
......@@ -19,6 +21,7 @@ export default [
size: '12',
clusterType: 'project_type',
status: 'authentication_failure',
memory: '22 (33% free)',
},
{
name: 'My Cluster 4',
......@@ -26,6 +29,7 @@ export default [
size: '12',
clusterType: 'project_type',
status: 'deleting',
memory: '45 (15% free)',
},
{
name: 'My Cluster 5',
......@@ -33,5 +37,6 @@ export default [
size: '12',
clusterType: 'project_type',
status: 'connected',
memory: '20.12 (35% free)',
},
];
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment