heat_stack.yaml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  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_etcd:
  37. type: number
  38. label: Number of etcd nodes
  39. description: Number of etcd nodes
  40. num_masters:
  41. type: number
  42. label: Number of masters
  43. description: Number of masters
  44. num_nodes:
  45. type: number
  46. label: Number of compute nodes
  47. description: Number of compute nodes
  48. num_infra:
  49. type: number
  50. label: Number of infrastructure nodes
  51. description: Number of infrastructure nodes
  52. etcd_image:
  53. type: string
  54. label: Etcd image
  55. description: Name of the image for the etcd servers
  56. master_image:
  57. type: string
  58. label: Master image
  59. description: Name of the image for the master servers
  60. node_image:
  61. type: string
  62. label: Node image
  63. description: Name of the image for the compute node servers
  64. infra_image:
  65. type: string
  66. label: Infra image
  67. description: Name of the image for the infra node servers
  68. etcd_flavor:
  69. type: string
  70. label: Etcd flavor
  71. description: Flavor of the etcd servers
  72. master_flavor:
  73. type: string
  74. label: Master flavor
  75. description: Flavor of the master servers
  76. node_flavor:
  77. type: string
  78. label: Node flavor
  79. description: Flavor of the compute node servers
  80. infra_flavor:
  81. type: string
  82. label: Infra flavor
  83. description: Flavor of the infra node servers
  84. outputs:
  85. etcd_names:
  86. description: Name of the etcds
  87. value: { get_attr: [ etcd, name ] }
  88. etcd_ips:
  89. description: IPs of the etcds
  90. value: { get_attr: [ etcd, private_ip ] }
  91. etcd_floating_ips:
  92. description: Floating IPs of the etcds
  93. value: { get_attr: [ etcd, floating_ip ] }
  94. master_names:
  95. description: Name of the masters
  96. value: { get_attr: [ masters, name ] }
  97. master_ips:
  98. description: IPs of the masters
  99. value: { get_attr: [ masters, private_ip ] }
  100. master_floating_ips:
  101. description: Floating IPs of the masters
  102. value: { get_attr: [ masters, floating_ip ] }
  103. node_names:
  104. description: Name of the nodes
  105. value: { get_attr: [ compute_nodes, name ] }
  106. node_ips:
  107. description: IPs of the nodes
  108. value: { get_attr: [ compute_nodes, private_ip ] }
  109. node_floating_ips:
  110. description: Floating IPs of the nodes
  111. value: { get_attr: [ compute_nodes, floating_ip ] }
  112. infra_names:
  113. description: Name of the nodes
  114. value: { get_attr: [ infra_nodes, name ] }
  115. infra_ips:
  116. description: IPs of the nodes
  117. value: { get_attr: [ infra_nodes, private_ip ] }
  118. infra_floating_ips:
  119. description: Floating IPs of the nodes
  120. value: { get_attr: [ infra_nodes, floating_ip ] }
  121. resources:
  122. net:
  123. type: OS::Neutron::Net
  124. properties:
  125. name:
  126. str_replace:
  127. template: openshift-ansible-cluster_id-net
  128. params:
  129. cluster_id: { get_param: cluster_id }
  130. subnet:
  131. type: OS::Neutron::Subnet
  132. properties:
  133. name:
  134. str_replace:
  135. template: openshift-ansible-cluster_id-subnet
  136. params:
  137. cluster_id: { get_param: cluster_id }
  138. network: { get_resource: net }
  139. cidr: { get_param: cidr }
  140. dns_nameservers: { get_param: dns_nameservers }
  141. router:
  142. type: OS::Neutron::Router
  143. properties:
  144. name:
  145. str_replace:
  146. template: openshift-ansible-cluster_id-router
  147. params:
  148. cluster_id: { get_param: cluster_id }
  149. external_gateway_info:
  150. network: { get_param: external_net }
  151. interface:
  152. type: OS::Neutron::RouterInterface
  153. properties:
  154. router_id: { get_resource: router }
  155. subnet_id: { get_resource: subnet }
  156. keypair:
  157. type: OS::Nova::KeyPair
  158. properties:
  159. name:
  160. str_replace:
  161. template: openshift-ansible-cluster_id-keypair
  162. params:
  163. cluster_id: { get_param: cluster_id }
  164. public_key: { get_param: ssh_public_key }
  165. master-secgrp:
  166. type: OS::Neutron::SecurityGroup
  167. properties:
  168. name:
  169. str_replace:
  170. template: openshift-ansible-cluster_id-master-secgrp
  171. params:
  172. cluster_id: { get_param: cluster_id }
  173. description:
  174. str_replace:
  175. template: Security group for cluster_id OpenShift cluster master
  176. params:
  177. cluster_id: { get_param: cluster_id }
  178. rules:
  179. - direction: ingress
  180. protocol: tcp
  181. port_range_min: 22
  182. port_range_max: 22
  183. remote_ip_prefix: { get_param: ssh_incoming }
  184. - direction: ingress
  185. protocol: tcp
  186. port_range_min: 4001
  187. port_range_max: 4001
  188. - direction: ingress
  189. protocol: tcp
  190. port_range_min: 8443
  191. port_range_max: 8443
  192. - direction: ingress
  193. protocol: tcp
  194. port_range_min: 53
  195. port_range_max: 53
  196. - direction: ingress
  197. protocol: udp
  198. port_range_min: 53
  199. port_range_max: 53
  200. - direction: ingress
  201. protocol: tcp
  202. port_range_min: 24224
  203. port_range_max: 24224
  204. - direction: ingress
  205. protocol: udp
  206. port_range_min: 24224
  207. port_range_max: 24224
  208. etcd-secgrp:
  209. type: OS::Neutron::SecurityGroup
  210. properties:
  211. name:
  212. str_replace:
  213. template: openshift-ansible-cluster_id-etcd-secgrp
  214. params:
  215. cluster_id: { get_param: cluster_id }
  216. description:
  217. str_replace:
  218. template: Security group for cluster_id etcd cluster
  219. params:
  220. cluster_id: { get_param: cluster_id }
  221. rules:
  222. - direction: ingress
  223. protocol: tcp
  224. port_range_min: 22
  225. port_range_max: 22
  226. remote_ip_prefix: { get_param: ssh_incoming }
  227. - direction: ingress
  228. protocol: tcp
  229. port_range_min: 2379
  230. port_range_max: 2379
  231. remote_mode: remote_group_id
  232. remote_group_id: { get_resource: master-secgrp }
  233. - direction: ingress
  234. protocol: tcp
  235. port_range_min: 2380
  236. port_range_max: 2380
  237. remote_mode: remote_group_id
  238. node-secgrp:
  239. type: OS::Neutron::SecurityGroup
  240. properties:
  241. name:
  242. str_replace:
  243. template: openshift-ansible-cluster_id-node-secgrp
  244. params:
  245. cluster_id: { get_param: cluster_id }
  246. description:
  247. str_replace:
  248. template: Security group for cluster_id OpenShift cluster nodes
  249. params:
  250. cluster_id: { get_param: cluster_id }
  251. rules:
  252. - direction: ingress
  253. protocol: tcp
  254. port_range_min: 22
  255. port_range_max: 22
  256. remote_ip_prefix: { get_param: ssh_incoming }
  257. - direction: ingress
  258. protocol: udp
  259. port_range_min: 4789
  260. port_range_max: 4789
  261. remote_mode: remote_group_id
  262. - direction: ingress
  263. protocol: tcp
  264. port_range_min: 10250
  265. port_range_max: 10250
  266. remote_mode: remote_group_id
  267. remote_group_id: { get_resource: master-secgrp }
  268. infra-secgrp:
  269. type: OS::Neutron::SecurityGroup
  270. properties:
  271. name:
  272. str_replace:
  273. template: openshift-ansible-cluster_id-infra-secgrp
  274. params:
  275. cluster_id: { get_param: cluster_id }
  276. description:
  277. str_replace:
  278. template: Security group for cluster_id OpenShift infrastructure cluster nodes
  279. params:
  280. cluster_id: { get_param: cluster_id }
  281. rules:
  282. - direction: ingress
  283. protocol: tcp
  284. port_range_min: 80
  285. port_range_max: 80
  286. - direction: ingress
  287. protocol: tcp
  288. port_range_min: 443
  289. port_range_max: 443
  290. etcd:
  291. type: OS::Heat::ResourceGroup
  292. properties:
  293. count: { get_param: num_etcd }
  294. resource_def:
  295. type: heat_stack_server.yaml
  296. properties:
  297. name:
  298. str_replace:
  299. template: cluster_id-k8s_type-%index%
  300. params:
  301. cluster_id: { get_param: cluster_id }
  302. k8s_type: etcd
  303. cluster_id: { get_param: cluster_id }
  304. type: etcd
  305. image: { get_param: etcd_image }
  306. flavor: { get_param: etcd_flavor }
  307. key_name: { get_resource: keypair }
  308. net: { get_resource: net }
  309. subnet: { get_resource: subnet }
  310. secgrp:
  311. - { get_resource: etcd-secgrp }
  312. floating_network: { get_param: floating_ip_pool }
  313. net_name:
  314. str_replace:
  315. template: openshift-ansible-cluster_id-net
  316. params:
  317. cluster_id: { get_param: cluster_id }
  318. depends_on: interface
  319. masters:
  320. type: OS::Heat::ResourceGroup
  321. properties:
  322. count: { get_param: num_masters }
  323. resource_def:
  324. type: heat_stack_server.yaml
  325. properties:
  326. name:
  327. str_replace:
  328. template: cluster_id-k8s_type-%index%
  329. params:
  330. cluster_id: { get_param: cluster_id }
  331. k8s_type: master
  332. cluster_id: { get_param: cluster_id }
  333. type: master
  334. image: { get_param: master_image }
  335. flavor: { get_param: master_flavor }
  336. key_name: { get_resource: keypair }
  337. net: { get_resource: net }
  338. subnet: { get_resource: subnet }
  339. secgrp:
  340. - { get_resource: master-secgrp }
  341. floating_network: { get_param: floating_ip_pool }
  342. net_name:
  343. str_replace:
  344. template: openshift-ansible-cluster_id-net
  345. params:
  346. cluster_id: { get_param: cluster_id }
  347. depends_on: interface
  348. compute_nodes:
  349. type: OS::Heat::ResourceGroup
  350. properties:
  351. count: { get_param: num_nodes }
  352. resource_def:
  353. type: heat_stack_server.yaml
  354. properties:
  355. name:
  356. str_replace:
  357. template: cluster_id-k8s_type-sub_host_type-%index%
  358. params:
  359. cluster_id: { get_param: cluster_id }
  360. k8s_type: node
  361. sub_host_type: compute
  362. cluster_id: { get_param: cluster_id }
  363. type: node
  364. subtype: compute
  365. image: { get_param: node_image }
  366. flavor: { get_param: node_flavor }
  367. key_name: { get_resource: keypair }
  368. net: { get_resource: net }
  369. subnet: { get_resource: subnet }
  370. secgrp:
  371. - { get_resource: node-secgrp }
  372. floating_network: { get_param: floating_ip_pool }
  373. net_name:
  374. str_replace:
  375. template: openshift-ansible-cluster_id-net
  376. params:
  377. cluster_id: { get_param: cluster_id }
  378. depends_on: interface
  379. infra_nodes:
  380. type: OS::Heat::ResourceGroup
  381. properties:
  382. count: { get_param: num_infra }
  383. resource_def:
  384. type: heat_stack_server.yaml
  385. properties:
  386. name:
  387. str_replace:
  388. template: cluster_id-k8s_type-sub_host_type-%index%
  389. params:
  390. cluster_id: { get_param: cluster_id }
  391. k8s_type: node
  392. sub_host_type: infra
  393. cluster_id: { get_param: cluster_id }
  394. type: node
  395. subtype: infra
  396. image: { get_param: infra_image }
  397. flavor: { get_param: infra_flavor }
  398. key_name: { get_resource: keypair }
  399. net: { get_resource: net }
  400. subnet: { get_resource: subnet }
  401. secgrp:
  402. - { get_resource: node-secgrp }
  403. - { get_resource: infra-secgrp }
  404. floating_network: { get_param: floating_ip_pool }
  405. net_name:
  406. str_replace:
  407. template: openshift-ansible-cluster_id-net
  408. params:
  409. cluster_id: { get_param: cluster_id }
  410. depends_on: interface