heat_stack.yaml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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. cidr:
  9. type: string
  10. label: CIDR
  11. description: CIDR of the network of the cluster
  12. dns_nameservers:
  13. type: comma_delimited_list
  14. label: DNS nameservers list
  15. description: List of DNS nameservers
  16. external_net:
  17. type: string
  18. label: External network
  19. description: Name of the external network
  20. default: external
  21. floating_ip_pool:
  22. type: string
  23. label: Floating IP pool
  24. description: Floating IP pools
  25. default: external
  26. ssh_public_key:
  27. type: string
  28. label: SSH public key
  29. description: SSH public key
  30. hidden: true
  31. ssh_incoming:
  32. type: string
  33. label: Source of ssh connections
  34. description: Source of legitimate ssh connections
  35. default: 0.0.0.0/0
  36. num_masters:
  37. type: number
  38. label: Number of masters
  39. description: Number of masters
  40. num_nodes:
  41. type: number
  42. label: Number of compute nodes
  43. description: Number of compute nodes
  44. num_infra:
  45. type: number
  46. label: Number of infrastructure nodes
  47. description: Number of infrastructure nodes
  48. master_image:
  49. type: string
  50. label: Master image
  51. description: Name of the image for the master servers
  52. node_image:
  53. type: string
  54. label: Node image
  55. description: Name of the image for the compute node servers
  56. infra_image:
  57. type: string
  58. label: Infra image
  59. description: Name of the image for the infra node servers
  60. master_flavor:
  61. type: string
  62. label: Master flavor
  63. description: Flavor of the master servers
  64. node_flavor:
  65. type: string
  66. label: Node flavor
  67. description: Flavor of the compute node servers
  68. infra_flavor:
  69. type: string
  70. label: Infra flavor
  71. description: Flavor of the infra node servers
  72. outputs:
  73. master_names:
  74. description: Name of the masters
  75. value: { get_attr: [ masters, name ] }
  76. master_ips:
  77. description: IPs of the masters
  78. value: { get_attr: [ masters, private_ip ] }
  79. master_floating_ips:
  80. description: Floating IPs of the masters
  81. value: { get_attr: [ masters, floating_ip ] }
  82. node_names:
  83. description: Name of the nodes
  84. value: { get_attr: [ compute_nodes, name ] }
  85. node_ips:
  86. description: IPs of the nodes
  87. value: { get_attr: [ compute_nodes, private_ip ] }
  88. node_floating_ips:
  89. description: Floating IPs of the nodes
  90. value: { get_attr: [ compute_nodes, floating_ip ] }
  91. infra_names:
  92. description: Name of the nodes
  93. value: { get_attr: [ infra_nodes, name ] }
  94. infra_ips:
  95. description: IPs of the nodes
  96. value: { get_attr: [ infra_nodes, private_ip ] }
  97. infra_floating_ips:
  98. description: Floating IPs of the nodes
  99. value: { get_attr: [ infra_nodes, floating_ip ] }
  100. resources:
  101. net:
  102. type: OS::Neutron::Net
  103. properties:
  104. name:
  105. str_replace:
  106. template: openshift-ansible-cluster_id-net
  107. params:
  108. cluster_id: { get_param: cluster_id }
  109. subnet:
  110. type: OS::Neutron::Subnet
  111. properties:
  112. name:
  113. str_replace:
  114. template: openshift-ansible-cluster_id-subnet
  115. params:
  116. cluster_id: { get_param: cluster_id }
  117. network: { get_resource: net }
  118. cidr: { get_param: cidr }
  119. dns_nameservers: { get_param: dns_nameservers }
  120. router:
  121. type: OS::Neutron::Router
  122. properties:
  123. name:
  124. str_replace:
  125. template: openshift-ansible-cluster_id-router
  126. params:
  127. cluster_id: { get_param: cluster_id }
  128. external_gateway_info:
  129. network: { get_param: external_net }
  130. interface:
  131. type: OS::Neutron::RouterInterface
  132. properties:
  133. router_id: { get_resource: router }
  134. subnet_id: { get_resource: subnet }
  135. keypair:
  136. type: OS::Nova::KeyPair
  137. properties:
  138. name:
  139. str_replace:
  140. template: openshift-ansible-cluster_id-keypair
  141. params:
  142. cluster_id: { get_param: cluster_id }
  143. public_key: { get_param: ssh_public_key }
  144. master-secgrp:
  145. type: OS::Neutron::SecurityGroup
  146. properties:
  147. name:
  148. str_replace:
  149. template: openshift-ansible-cluster_id-master-secgrp
  150. params:
  151. cluster_id: { get_param: cluster_id }
  152. description:
  153. str_replace:
  154. template: Security group for cluster_id OpenShift cluster master
  155. params:
  156. cluster_id: { get_param: cluster_id }
  157. rules:
  158. - direction: ingress
  159. protocol: tcp
  160. port_range_min: 22
  161. port_range_max: 22
  162. remote_ip_prefix: { get_param: ssh_incoming }
  163. - direction: ingress
  164. protocol: tcp
  165. port_range_min: 4001
  166. port_range_max: 4001
  167. - direction: ingress
  168. protocol: tcp
  169. port_range_min: 8443
  170. port_range_max: 8443
  171. - direction: ingress
  172. protocol: tcp
  173. port_range_min: 53
  174. port_range_max: 53
  175. - direction: ingress
  176. protocol: udp
  177. port_range_min: 53
  178. port_range_max: 53
  179. - direction: ingress
  180. protocol: tcp
  181. port_range_min: 24224
  182. port_range_max: 24224
  183. - direction: ingress
  184. protocol: udp
  185. port_range_min: 24224
  186. port_range_max: 24224
  187. node-secgrp:
  188. type: OS::Neutron::SecurityGroup
  189. properties:
  190. name:
  191. str_replace:
  192. template: openshift-ansible-cluster_id-node-secgrp
  193. params:
  194. cluster_id: { get_param: cluster_id }
  195. description:
  196. str_replace:
  197. template: Security group for cluster_id OpenShift cluster nodes
  198. params:
  199. cluster_id: { get_param: cluster_id }
  200. rules:
  201. - direction: ingress
  202. protocol: tcp
  203. port_range_min: 22
  204. port_range_max: 22
  205. remote_ip_prefix: { get_param: ssh_incoming }
  206. - direction: ingress
  207. protocol: udp
  208. port_range_min: 4789
  209. port_range_max: 4789
  210. remote_mode: remote_group_id
  211. - direction: ingress
  212. protocol: tcp
  213. port_range_min: 10250
  214. port_range_max: 10250
  215. remote_mode: remote_group_id
  216. remote_group_id: { get_resource: master-secgrp }
  217. infra-secgrp:
  218. type: OS::Neutron::SecurityGroup
  219. properties:
  220. name:
  221. str_replace:
  222. template: openshift-ansible-cluster_id-infra-secgrp
  223. params:
  224. cluster_id: { get_param: cluster_id }
  225. description:
  226. str_replace:
  227. template: Security group for cluster_id OpenShift infrastructure cluster nodes
  228. params:
  229. cluster_id: { get_param: cluster_id }
  230. rules:
  231. - direction: ingress
  232. protocol: tcp
  233. port_range_min: 80
  234. port_range_max: 80
  235. - direction: ingress
  236. protocol: tcp
  237. port_range_min: 443
  238. port_range_max: 443
  239. masters:
  240. type: OS::Heat::ResourceGroup
  241. properties:
  242. count: { get_param: num_masters }
  243. resource_def:
  244. type: heat_stack_server.yaml
  245. properties:
  246. name:
  247. str_replace:
  248. template: cluster_id-k8s_type-%index%
  249. params:
  250. cluster_id: { get_param: cluster_id }
  251. k8s_type: master
  252. cluster_id: { get_param: cluster_id }
  253. type: master
  254. image: { get_param: master_image }
  255. flavor: { get_param: master_flavor }
  256. key_name: { get_resource: keypair }
  257. net: { get_resource: net }
  258. subnet: { get_resource: subnet }
  259. secgrp:
  260. - { get_resource: master-secgrp }
  261. floating_network: { get_param: floating_ip_pool }
  262. net_name:
  263. str_replace:
  264. template: openshift-ansible-cluster_id-net
  265. params:
  266. cluster_id: { get_param: cluster_id }
  267. depends_on: interface
  268. compute_nodes:
  269. type: OS::Heat::ResourceGroup
  270. properties:
  271. count: { get_param: num_nodes }
  272. resource_def:
  273. type: heat_stack_server.yaml
  274. properties:
  275. name:
  276. str_replace:
  277. template: cluster_id-k8s_type-sub_host_type-%index%
  278. params:
  279. cluster_id: { get_param: cluster_id }
  280. k8s_type: node
  281. sub_host_type: compute
  282. cluster_id: { get_param: cluster_id }
  283. type: node
  284. subtype: compute
  285. image: { get_param: node_image }
  286. flavor: { get_param: node_flavor }
  287. key_name: { get_resource: keypair }
  288. net: { get_resource: net }
  289. subnet: { get_resource: subnet }
  290. secgrp:
  291. - { get_resource: node-secgrp }
  292. floating_network: { get_param: floating_ip_pool }
  293. net_name:
  294. str_replace:
  295. template: openshift-ansible-cluster_id-net
  296. params:
  297. cluster_id: { get_param: cluster_id }
  298. depends_on: interface
  299. infra_nodes:
  300. type: OS::Heat::ResourceGroup
  301. properties:
  302. count: { get_param: num_infra }
  303. resource_def:
  304. type: heat_stack_server.yaml
  305. properties:
  306. name:
  307. str_replace:
  308. template: cluster_id-k8s_type-sub_host_type-%index%
  309. params:
  310. cluster_id: { get_param: cluster_id }
  311. k8s_type: node
  312. sub_host_type: infra
  313. cluster_id: { get_param: cluster_id }
  314. type: node
  315. subtype: infra
  316. image: { get_param: infra_image }
  317. flavor: { get_param: infra_flavor }
  318. key_name: { get_resource: keypair }
  319. net: { get_resource: net }
  320. subnet: { get_resource: subnet }
  321. secgrp:
  322. - { get_resource: node-secgrp }
  323. - { get_resource: infra-secgrp }
  324. floating_network: { get_param: floating_ip_pool }
  325. net_name:
  326. str_replace:
  327. template: openshift-ansible-cluster_id-net
  328. params:
  329. cluster_id: { get_param: cluster_id }
  330. depends_on: interface