Guest User

Untitled

a guest
Mar 23rd, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. root@linux-r4ap:/opt/fuel/mcp/config/labs/local# cat virtual1.yaml
  2. ##############################################################################
  3. # Copyright (c) 2018 Ericsson AB, Mirantis Inc., Enea AB and others.
  4. # All rights reserved. This program and the accompanying materials
  5. # are made available under the terms of the Apache License, Version 2.0
  6. # which accompanies this distribution, and is available at
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. ##############################################################################
  9. ---
  10. ### Fuel@OPNFV sample VIRTUAL POD descriptor file ###
  11. ### NOTE: This is subject to change as vPDF is not yet officialy supported ###
  12.  
  13. version: 0.0 # Intentionally invalid to indicate this is experimental
  14. details:
  15. pod_owner: Fuel@OPNFV
  16. contact: Fuel@OPNFV
  17. lab: Example Lab
  18. location: Example Location
  19. type: development
  20. link: https://wiki.opnfv.org/display/pharos/
  21. ##############################################################################
  22. jumphost:
  23. name: virtual1-jump
  24. node:
  25. type: baremetal
  26. vendor: HP
  27. model: ProLiant BL460c Gen8
  28. arch: x86_64
  29. cpus: 2
  30. cpu_cflags: ivybridge
  31. cores: 10
  32. memory: 64G
  33. disks:
  34. - name: 'disk1'
  35. disk_capacity: 800G
  36. disk_type: hdd
  37. disk_interface: scsi
  38. disk_rotation: 15000
  39. os: ubuntu-16.04
  40. remote_management:
  41. type: ipmi
  42. versions:
  43. - 1.0
  44. - 2.0
  45. user: changeme
  46. pass: changeme
  47. address: 0.0.0.0
  48. mac_address: "00:00:00:00:00:00"
  49. interfaces:
  50. - name: 'nic1'
  51. speed: 10gb
  52. features: 'dpdk|sriov'
  53. mac_address: "00:00:00:00:00:00"
  54. vlan: native
  55. - name: 'nic2'
  56. speed: 10gb
  57. features: 'dpdk|sriov'
  58. mac_address: "00:00:00:00:00:00"
  59. vlan: native
  60. ##############################################################################
  61. nodes:
  62. - name: node-1
  63. node: &nodeparams
  64. # Fuel overrides certain params (e.g. cpus, mem) based on node role later
  65. type: virtual
  66. vendor: libvirt
  67. model: virt
  68. arch: x86_64
  69. cpus: 1
  70. cpu_cflags: ivybridge
  71. cores: 8
  72. memory: 6G
  73. disks: &disks
  74. - name: 'disk1'
  75. disk_capacity: 100G
  76. disk_type: hdd
  77. disk_interface: scsi # virtio-scsi
  78. disk_rotation: 15000
  79. remote_management: &remotemgmt
  80. type: libvirt
  81. user: changeme
  82. pass: changeme
  83. address: 127.0.0.1 # Not used currently, will be 'qemu:///system' later
  84. interfaces: &interfaces
  85. - name: 'nic1'
  86. speed: 10gb
  87. features: 'dpdk|sriov'
  88. mac_address: "00:00:00:00:00:00" # MACs will be assigned by libvirt
  89. vlan: native
  90. - name: 'nic2'
  91. speed: 10gb
  92. features: 'dpdk|sriov'
  93. mac_address: "00:00:00:00:00:00"
  94. vlan: native
  95. - name: 'nic3'
  96. speed: 10gb
  97. features: 'dpdk|sriov'
  98. mac_address: "00:00:00:00:00:00"
  99. vlan: native
  100. - name: 'nic4'
  101. speed: 10gb
  102. features: 'dpdk|sriov'
  103. mac_address: "00:00:00:00:00:00"
  104. vlan: native
  105. ############################################################################
  106. - name: node-2
  107. node: *nodeparams
  108. disks: *disks
  109. remote_management: *remotemgmt
  110. interfaces: *interfaces
  111. ############################################################################
  112. - name: node-3
  113. node: *nodeparams
  114. disks: *disks
  115. remote_management: *remotemgmt
  116. interfaces: *interfaces
  117. ############################################################################
  118. - name: node-4
  119. node: *nodeparams
  120. disks: *disks
  121. remote_management: *remotemgmt
  122. interfaces: *interfaces
  123. ############################################################################
  124. - name: node-5
  125. node: *nodeparams
  126. disks: *disks
  127. remote_management: *remotemgmt
  128. interfaces: *interfaces
  129. root@linux-r4ap:/opt/fuel/mcp/config/labs/local#
Add Comment
Please, Sign In to add comment