step3_hosts.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. module.exports = new Ember.Set([
  2. {
  3. name: '192.168.1.1',
  4. bootStatus: 'pending',
  5. cpu: '2',
  6. memory: '2'
  7. },
  8. {
  9. name: '192.168.1.2',
  10. bootStatus: 'success',
  11. cpu: '4',
  12. memory: '4'
  13. },
  14. {
  15. name: '192.168.1.3',
  16. bootStatus: 'pending',
  17. cpu: '2',
  18. memory: '2'
  19. },
  20. {
  21. name: '192.168.1.4',
  22. bootStatus: 'pending',
  23. cpu: '2',
  24. memory: '4'
  25. },
  26. {
  27. name: '192.168.1.5',
  28. bootStatus: 'success',
  29. cpu: '2',
  30. memory: '4'
  31. },
  32. {
  33. name: '192.168.1.6',
  34. bootStatus: 'pending',
  35. cpu: '4',
  36. memory: '8'
  37. },
  38. {
  39. name: '192.168.1.7',
  40. bootStatus: 'success',
  41. cpu: '4',
  42. memory: '4'
  43. },
  44. {
  45. name: '192.168.1.8',
  46. bootStatus: 'success',
  47. cpu: '4',
  48. memory: '2'
  49. },
  50. {
  51. name: '192.168.1.9',
  52. bootStatus: 'success',
  53. cpu: '2',
  54. memory: '4'
  55. },
  56. {
  57. name: '192.168.1.10',
  58. bootStatus: 'pending',
  59. cpu: '4',
  60. memory: '2'
  61. },
  62. {
  63. name: '192.168.1.11',
  64. bootStatus: 'success',
  65. cpu: '2',
  66. memory: '2'
  67. },
  68. {
  69. name: '192.168.1.12',
  70. bootStatus: 'pending',
  71. cpu: '2',
  72. memory: '4'
  73. },
  74. {
  75. name: '192.168.1.13',
  76. bootStatus: 'success',
  77. cpu: '4',
  78. memory: '8'
  79. }
  80. ]);