123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- module.exports = new Ember.Set([
- {
- name: '192.168.1.1',
- bootStatus: 'pending',
- cpu: '2',
- memory: '2'
- },
- {
- name: '192.168.1.2',
- bootStatus: 'success',
- cpu: '4',
- memory: '4'
- },
- {
- name: '192.168.1.3',
- bootStatus: 'pending',
- cpu: '2',
- memory: '2'
- },
- {
- name: '192.168.1.4',
- bootStatus: 'pending',
- cpu: '2',
- memory: '4'
- },
- {
- name: '192.168.1.5',
- bootStatus: 'success',
- cpu: '2',
- memory: '4'
- },
- {
- name: '192.168.1.6',
- bootStatus: 'pending',
- cpu: '4',
- memory: '8'
- },
- {
- name: '192.168.1.7',
- bootStatus: 'success',
- cpu: '4',
- memory: '4'
- },
- {
- name: '192.168.1.8',
- bootStatus: 'success',
- cpu: '4',
- memory: '2'
- },
- {
- name: '192.168.1.9',
- bootStatus: 'success',
- cpu: '2',
- memory: '4'
- },
- {
- name: '192.168.1.10',
- bootStatus: 'pending',
- cpu: '4',
- memory: '2'
- },
- {
- name: '192.168.1.11',
- bootStatus: 'success',
- cpu: '2',
- memory: '2'
- },
- {
- name: '192.168.1.12',
- bootStatus: 'pending',
- cpu: '2',
- memory: '4'
- },
- {
- name: '192.168.1.13',
- bootStatus: 'success',
- cpu: '4',
- memory: '8'
- }
- ]);
|