heat_stack_server.yaml.j2 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. heat_template_version: 2016-10-14
  2. description: OpenShift cluster server
  3. parameters:
  4. name:
  5. type: string
  6. label: Name
  7. description: Name
  8. group:
  9. type: string
  10. label: Host Group
  11. description: The Primary Ansible Host Group
  12. default: host
  13. cluster_env:
  14. type: string
  15. label: Cluster environment
  16. description: Environment of the cluster
  17. cluster_id:
  18. type: string
  19. label: Cluster ID
  20. description: Identifier of the cluster
  21. type:
  22. type: string
  23. label: Type
  24. description: Type master or node
  25. subtype:
  26. type: string
  27. label: Sub-type
  28. description: Sub-type compute or infra for nodes, default otherwise
  29. default: default
  30. key_name:
  31. type: string
  32. label: Key name
  33. description: Key name of keypair
  34. image:
  35. type: string
  36. label: Image
  37. description: Name of the image
  38. flavor:
  39. type: string
  40. label: Flavor
  41. description: Name of the flavor
  42. net:
  43. type: string
  44. label: Net ID
  45. description: Net resource
  46. net_name:
  47. type: string
  48. label: Net name
  49. description: Net name
  50. {% if not openstack_provider_network_name %}
  51. subnet:
  52. type: string
  53. label: Subnet ID
  54. description: Subnet resource
  55. {% endif %}
  56. {% if openshift_use_flannel|default(False)|bool %}
  57. attach_data_net:
  58. type: boolean
  59. default: false
  60. label: Attach-data-net
  61. description: A switch for data port connection
  62. data_net:
  63. type: string
  64. default: ''
  65. label: Net ID
  66. description: Net resource
  67. {% if not openstack_provider_network_name %}
  68. data_subnet:
  69. type: string
  70. default: ''
  71. label: Subnet ID
  72. description: Subnet resource
  73. {% endif %}
  74. {% endif %}
  75. secgrp:
  76. type: comma_delimited_list
  77. label: Security groups
  78. description: Security group resources
  79. attach_float_net:
  80. type: boolean
  81. default: true
  82. label: Attach-float-net
  83. description: A switch for floating network port connection
  84. {% if not openstack_provider_network_name %}
  85. floating_network:
  86. type: string
  87. default: ''
  88. label: Floating network
  89. description: Network to allocate floating IP from
  90. {% endif %}
  91. availability_zone:
  92. type: string
  93. description: The Availability Zone to launch the instance.
  94. default: nova
  95. volume_size:
  96. type: number
  97. description: Size of the volume to be created.
  98. default: 1
  99. constraints:
  100. - range: { min: 1, max: 1024 }
  101. description: must be between 1 and 1024 Gb.
  102. node_labels:
  103. type: json
  104. description: OpenShift Node Labels
  105. default: {"region": "default" }
  106. scheduler_hints:
  107. type: json
  108. description: Server scheduler hints.
  109. default: {}
  110. outputs:
  111. name:
  112. description: Name of the server
  113. value: { get_attr: [ server, name ] }
  114. private_ip:
  115. description: Private IP of the server
  116. value:
  117. get_attr:
  118. - server
  119. - addresses
  120. - { get_param: net_name }
  121. - 0
  122. - addr
  123. floating_ip:
  124. description: Floating IP of the server
  125. value:
  126. get_attr:
  127. - server
  128. - addresses
  129. - { get_param: net_name }
  130. {% if openstack_provider_network_name %}
  131. - 0
  132. {% else %}
  133. - 1
  134. {% endif %}
  135. - addr
  136. conditions:
  137. no_floating: {not: { get_param: attach_float_net} }
  138. {% if openshift_use_flannel|default(False)|bool %}
  139. no_data_subnet: {not: { get_param: attach_data_net} }
  140. {% endif %}
  141. resources:
  142. server:
  143. type: OS::Nova::Server
  144. properties:
  145. name: { get_param: name }
  146. key_name: { get_param: key_name }
  147. image: { get_param: image }
  148. flavor: { get_param: flavor }
  149. networks:
  150. {% if openshift_use_flannel|default(False)|bool %}
  151. if:
  152. - no_data_subnet
  153. {% if use_trunk_ports|default(false)|bool %}
  154. - - port: { get_attr: [trunk-port, port_id] }
  155. {% else %}
  156. - - port: { get_resource: port }
  157. {% endif %}
  158. {% if use_trunk_ports|default(false)|bool %}
  159. - - port: { get_attr: [trunk-port, port_id] }
  160. {% else %}
  161. - - port: { get_resource: port }
  162. - port: { get_resource: data_port }
  163. {% endif %}
  164. {% else %}
  165. {% if use_trunk_ports|default(false)|bool %}
  166. - port: { get_attr: [trunk-port, port_id] }
  167. {% else %}
  168. - port: { get_resource: port }
  169. {% endif %}
  170. {% endif %}
  171. user_data:
  172. get_file: user-data
  173. user_data_format: RAW
  174. user_data_update_policy: IGNORE
  175. metadata:
  176. group: { get_param: group }
  177. environment: { get_param: cluster_env }
  178. clusterid: { get_param: cluster_id }
  179. host-type: { get_param: type }
  180. sub-host-type: { get_param: subtype }
  181. node_labels: { get_param: node_labels }
  182. scheduler_hints: { get_param: scheduler_hints }
  183. {% if use_trunk_ports|default(false)|bool %}
  184. trunk-port:
  185. type: OS::Neutron::Trunk
  186. properties:
  187. name: { get_param: name }
  188. port: { get_resource: port }
  189. {% endif %}
  190. port:
  191. type: OS::Neutron::Port
  192. properties:
  193. network: { get_param: net }
  194. {% if not openstack_provider_network_name %}
  195. fixed_ips:
  196. - subnet: { get_param: subnet }
  197. {% endif %}
  198. security_groups: { get_param: secgrp }
  199. {% if openshift_use_flannel|default(False)|bool %}
  200. data_port:
  201. type: OS::Neutron::Port
  202. condition: { not: no_data_subnet }
  203. properties:
  204. network: { get_param: data_net }
  205. port_security_enabled: false
  206. {% if not openstack_provider_network_name %}
  207. fixed_ips:
  208. - subnet: { get_param: data_subnet }
  209. {% endif %}
  210. {% endif %}
  211. {% if not openstack_provider_network_name %}
  212. floating-ip:
  213. condition: { not: no_floating }
  214. type: OS::Neutron::FloatingIP
  215. properties:
  216. floating_network: { get_param: floating_network }
  217. port_id: { get_resource: port }
  218. {% endif %}
  219. {% if not ephemeral_volumes|default(false)|bool %}
  220. cinder_volume:
  221. type: OS::Cinder::Volume
  222. properties:
  223. size: { get_param: volume_size }
  224. availability_zone: { get_param: availability_zone }
  225. volume_attachment:
  226. type: OS::Cinder::VolumeAttachment
  227. properties:
  228. volume_id: { get_resource: cinder_volume }
  229. instance_uuid: { get_resource: server }
  230. mountpoint: /dev/sdb
  231. {% endif %}