heat_stack.yaml 13 KB

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