heat_stack.yaml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. heat_template_version: 2014-10-16
  2. description: OpenShift cluster
  3. parameters:
  4. cluster_id:
  5. type: string
  6. label: Cluster ID
  7. description: Identifier of the cluster
  8. num_masters:
  9. type: number
  10. label: Number of masters
  11. description: Number of masters
  12. num_nodes:
  13. type: number
  14. label: Number of nodes
  15. description: Number of nodes
  16. cidr:
  17. type: string
  18. label: CIDR
  19. description: CIDR of the network of the cluster
  20. dns_nameservers:
  21. type: comma_delimited_list
  22. label: DNS nameservers list
  23. description: List of DNS nameservers
  24. external_net:
  25. type: string
  26. label: External network
  27. description: Name of the external network
  28. default: external
  29. ssh_public_key:
  30. type: string
  31. label: SSH public key
  32. description: SSH public key
  33. hidden: true
  34. ssh_incoming:
  35. type: string
  36. label: Source of ssh connections
  37. description: Source of legitimate ssh connections
  38. default: 0.0.0.0/0
  39. master_image:
  40. type: string
  41. label: Master image
  42. description: Name of the image for the master servers
  43. node_image:
  44. type: string
  45. label: Node image
  46. description: Name of the image for the node servers
  47. master_flavor:
  48. type: string
  49. label: Master flavor
  50. description: Flavor of the master servers
  51. node_flavor:
  52. type: string
  53. label: Node flavor
  54. description: Flavor of the node servers
  55. outputs:
  56. master_names:
  57. description: Name of the masters
  58. value: { get_attr: [ masters, name ] }
  59. master_ips:
  60. description: IPs of the masters
  61. value: { get_attr: [ masters, private_ip ] }
  62. master_floating_ips:
  63. description: Floating IPs of the masters
  64. value: { get_attr: [ masters, floating_ip ] }
  65. node_names:
  66. description: Name of the nodes
  67. value: { get_attr: [ nodes, name ] }
  68. node_ips:
  69. description: IPs of the nodes
  70. value: { get_attr: [ nodes, private_ip ] }
  71. node_floating_ips:
  72. description: Floating IPs of the nodes
  73. value: { get_attr: [ nodes, floating_ip ] }
  74. resources:
  75. net:
  76. type: OS::Neutron::Net
  77. properties:
  78. name:
  79. str_replace:
  80. template: openshift-ansible-cluster_id-net
  81. params:
  82. cluster_id: { get_param: cluster_id }
  83. subnet:
  84. type: OS::Neutron::Subnet
  85. properties:
  86. name:
  87. str_replace:
  88. template: openshift-ansible-cluster_id-subnet
  89. params:
  90. cluster_id: { get_param: cluster_id }
  91. network: { get_resource: net }
  92. cidr: { get_param: cidr }
  93. dns_nameservers: { get_param: dns_nameservers }
  94. router:
  95. type: OS::Neutron::Router
  96. properties:
  97. name:
  98. str_replace:
  99. template: openshift-ansible-cluster_id-router
  100. params:
  101. cluster_id: { get_param: cluster_id }
  102. external_gateway_info:
  103. network: { get_param: external_net }
  104. interface:
  105. type: OS::Neutron::RouterInterface
  106. properties:
  107. router_id: { get_resource: router }
  108. subnet_id: { get_resource: subnet }
  109. keypair:
  110. type: OS::Nova::KeyPair
  111. properties:
  112. name:
  113. str_replace:
  114. template: openshift-ansible-cluster_id-keypair
  115. params:
  116. cluster_id: { get_param: cluster_id }
  117. public_key: { get_param: ssh_public_key }
  118. master-secgrp:
  119. type: OS::Neutron::SecurityGroup
  120. properties:
  121. name:
  122. str_replace:
  123. template: openshift-ansible-cluster_id-master-secgrp
  124. params:
  125. cluster_id: { get_param: cluster_id }
  126. description:
  127. str_replace:
  128. template: Security group for cluster_id OpenShift cluster master
  129. params:
  130. cluster_id: { get_param: cluster_id }
  131. rules:
  132. - direction: ingress
  133. protocol: tcp
  134. port_range_min: 22
  135. port_range_max: 22
  136. remote_ip_prefix: { get_param: ssh_incoming }
  137. - direction: ingress
  138. protocol: tcp
  139. port_range_min: 4001
  140. port_range_max: 4001
  141. - direction: ingress
  142. protocol: tcp
  143. port_range_min: 8443
  144. port_range_max: 8443
  145. - direction: ingress
  146. protocol: tcp
  147. port_range_min: 53
  148. port_range_max: 53
  149. - direction: ingress
  150. protocol: udp
  151. port_range_min: 53
  152. port_range_max: 53
  153. - direction: ingress
  154. protocol: tcp
  155. port_range_min: 24224
  156. port_range_max: 24224
  157. - direction: ingress
  158. protocol: udp
  159. port_range_min: 24224
  160. port_range_max: 24224
  161. node-secgrp:
  162. type: OS::Neutron::SecurityGroup
  163. properties:
  164. name:
  165. str_replace:
  166. template: openshift-ansible-cluster_id-node-secgrp
  167. params:
  168. cluster_id: { get_param: cluster_id }
  169. description:
  170. str_replace:
  171. template: Security group for cluster_id OpenShift cluster nodes
  172. params:
  173. cluster_id: { get_param: cluster_id }
  174. rules:
  175. - direction: ingress
  176. protocol: tcp
  177. port_range_min: 22
  178. port_range_max: 22
  179. remote_ip_prefix: { get_param: ssh_incoming }
  180. - direction: ingress
  181. protocol: udp
  182. port_range_min: 4789
  183. port_range_max: 4789
  184. remote_mode: remote_group_id
  185. - direction: ingress
  186. protocol: tcp
  187. port_range_min: 10250
  188. port_range_max: 10250
  189. remote_mode: remote_group_id
  190. remote_group_id: { get_resource: master-secgrp }
  191. masters:
  192. type: OS::Heat::ResourceGroup
  193. properties:
  194. count: { get_param: num_masters }
  195. resource_def:
  196. type: heat_stack_server.yaml
  197. properties:
  198. name:
  199. str_replace:
  200. template: cluster_id-k8s_type-%index%
  201. params:
  202. cluster_id: { get_param: cluster_id }
  203. k8s_type: master
  204. cluster_id: { get_param: cluster_id }
  205. type: master
  206. image: { get_param: master_image }
  207. flavor: { get_param: master_flavor }
  208. key_name: { get_resource: keypair }
  209. net: { get_resource: net }
  210. subnet: { get_resource: subnet }
  211. secgrp:
  212. - { get_resource: master-secgrp }
  213. floating_network: { get_param: external_net }
  214. net_name:
  215. str_replace:
  216. template: openshift-ansible-cluster_id-net
  217. params:
  218. cluster_id: { get_param: cluster_id }
  219. depends_on: interface
  220. nodes:
  221. type: OS::Heat::ResourceGroup
  222. properties:
  223. count: { get_param: num_nodes }
  224. resource_def:
  225. type: heat_stack_server.yaml
  226. properties:
  227. name:
  228. str_replace:
  229. template: cluster_id-k8s_type-%index%
  230. params:
  231. cluster_id: { get_param: cluster_id }
  232. k8s_type: node
  233. cluster_id: { get_param: cluster_id }
  234. type: node
  235. image: { get_param: node_image }
  236. flavor: { get_param: node_flavor }
  237. key_name: { get_resource: keypair }
  238. net: { get_resource: net }
  239. subnet: { get_resource: subnet }
  240. secgrp:
  241. - { get_resource: node-secgrp }
  242. floating_network: { get_param: external_net }
  243. net_name:
  244. str_replace:
  245. template: openshift-ansible-cluster_id-net
  246. params:
  247. cluster_id: { get_param: cluster_id }
  248. depends_on: interface