heat_stack.yaml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  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. subnet_24_prefix:
  13. type: string
  14. label: subnet /24 prefix
  15. description: /24 subnet prefix of the network of the cluster (dot separated number triplet)
  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. ssh_public_key:
  26. type: string
  27. label: SSH public key
  28. description: SSH public key
  29. hidden: true
  30. ssh_incoming:
  31. type: string
  32. label: Source of ssh connections
  33. description: Source of legitimate ssh connections
  34. default: 0.0.0.0/0
  35. node_port_incoming:
  36. type: string
  37. label: Source of node port connections
  38. description: Authorized sources targeting node ports
  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:
  144. str_replace:
  145. template: subnet_24_prefix.0/24
  146. params:
  147. subnet_24_prefix: { get_param: subnet_24_prefix }
  148. dns_nameservers: { get_param: dns_nameservers }
  149. router:
  150. type: OS::Neutron::Router
  151. properties:
  152. name:
  153. str_replace:
  154. template: openshift-ansible-cluster_id-router
  155. params:
  156. cluster_id: { get_param: cluster_id }
  157. external_gateway_info:
  158. network: { get_param: external_net }
  159. interface:
  160. type: OS::Neutron::RouterInterface
  161. properties:
  162. router_id: { get_resource: router }
  163. subnet_id: { get_resource: subnet }
  164. keypair:
  165. type: OS::Nova::KeyPair
  166. properties:
  167. name:
  168. str_replace:
  169. template: openshift-ansible-cluster_id-keypair
  170. params:
  171. cluster_id: { get_param: cluster_id }
  172. public_key: { get_param: ssh_public_key }
  173. master-secgrp:
  174. type: OS::Neutron::SecurityGroup
  175. properties:
  176. name:
  177. str_replace:
  178. template: openshift-ansible-cluster_id-master-secgrp
  179. params:
  180. cluster_id: { get_param: cluster_id }
  181. description:
  182. str_replace:
  183. template: Security group for cluster_id OpenShift cluster master
  184. params:
  185. cluster_id: { get_param: cluster_id }
  186. rules:
  187. - direction: ingress
  188. protocol: tcp
  189. port_range_min: 22
  190. port_range_max: 22
  191. remote_ip_prefix: { get_param: ssh_incoming }
  192. - direction: ingress
  193. protocol: tcp
  194. port_range_min: 4001
  195. port_range_max: 4001
  196. - direction: ingress
  197. protocol: tcp
  198. port_range_min: 8443
  199. port_range_max: 8443
  200. - direction: ingress
  201. protocol: tcp
  202. port_range_min: 8444
  203. port_range_max: 8444
  204. - direction: ingress
  205. protocol: tcp
  206. port_range_min: 53
  207. port_range_max: 53
  208. - direction: ingress
  209. protocol: udp
  210. port_range_min: 53
  211. port_range_max: 53
  212. - direction: ingress
  213. protocol: tcp
  214. port_range_min: 8053
  215. port_range_max: 8053
  216. - direction: ingress
  217. protocol: udp
  218. port_range_min: 8053
  219. port_range_max: 8053
  220. - direction: ingress
  221. protocol: tcp
  222. port_range_min: 24224
  223. port_range_max: 24224
  224. - direction: ingress
  225. protocol: udp
  226. port_range_min: 24224
  227. port_range_max: 24224
  228. - direction: ingress
  229. protocol: tcp
  230. port_range_min: 2224
  231. port_range_max: 2224
  232. - direction: ingress
  233. protocol: udp
  234. port_range_min: 5404
  235. port_range_max: 5404
  236. - direction: ingress
  237. protocol: udp
  238. port_range_min: 5405
  239. port_range_max: 5405
  240. - direction: ingress
  241. protocol: tcp
  242. port_range_min: 9090
  243. port_range_max: 9090
  244. etcd-secgrp:
  245. type: OS::Neutron::SecurityGroup
  246. properties:
  247. name:
  248. str_replace:
  249. template: openshift-ansible-cluster_id-etcd-secgrp
  250. params:
  251. cluster_id: { get_param: cluster_id }
  252. description:
  253. str_replace:
  254. template: Security group for cluster_id etcd cluster
  255. params:
  256. cluster_id: { get_param: cluster_id }
  257. rules:
  258. - direction: ingress
  259. protocol: tcp
  260. port_range_min: 22
  261. port_range_max: 22
  262. remote_ip_prefix: { get_param: ssh_incoming }
  263. - direction: ingress
  264. protocol: tcp
  265. port_range_min: 2379
  266. port_range_max: 2379
  267. remote_mode: remote_group_id
  268. remote_group_id: { get_resource: master-secgrp }
  269. - direction: ingress
  270. protocol: tcp
  271. port_range_min: 2380
  272. port_range_max: 2380
  273. remote_mode: remote_group_id
  274. node-secgrp:
  275. type: OS::Neutron::SecurityGroup
  276. properties:
  277. name:
  278. str_replace:
  279. template: openshift-ansible-cluster_id-node-secgrp
  280. params:
  281. cluster_id: { get_param: cluster_id }
  282. description:
  283. str_replace:
  284. template: Security group for cluster_id OpenShift cluster nodes
  285. params:
  286. cluster_id: { get_param: cluster_id }
  287. rules:
  288. - direction: ingress
  289. protocol: tcp
  290. port_range_min: 22
  291. port_range_max: 22
  292. remote_ip_prefix: { get_param: ssh_incoming }
  293. - direction: ingress
  294. protocol: tcp
  295. port_range_min: 10250
  296. port_range_max: 10250
  297. remote_mode: remote_group_id
  298. - direction: ingress
  299. protocol: tcp
  300. port_range_min: 10255
  301. port_range_max: 10255
  302. remote_mode: remote_group_id
  303. - direction: ingress
  304. protocol: udp
  305. port_range_min: 10255
  306. port_range_max: 10255
  307. remote_mode: remote_group_id
  308. - direction: ingress
  309. protocol: udp
  310. port_range_min: 4789
  311. port_range_max: 4789
  312. remote_mode: remote_group_id
  313. - direction: ingress
  314. protocol: tcp
  315. port_range_min: 30000
  316. port_range_max: 32767
  317. remote_ip_prefix: { get_param: node_port_incoming }
  318. infra-secgrp:
  319. type: OS::Neutron::SecurityGroup
  320. properties:
  321. name:
  322. str_replace:
  323. template: openshift-ansible-cluster_id-infra-secgrp
  324. params:
  325. cluster_id: { get_param: cluster_id }
  326. description:
  327. str_replace:
  328. template: Security group for cluster_id OpenShift infrastructure cluster nodes
  329. params:
  330. cluster_id: { get_param: cluster_id }
  331. rules:
  332. - direction: ingress
  333. protocol: tcp
  334. port_range_min: 80
  335. port_range_max: 80
  336. - direction: ingress
  337. protocol: tcp
  338. port_range_min: 443
  339. port_range_max: 443
  340. etcd:
  341. type: OS::Heat::ResourceGroup
  342. properties:
  343. count: { get_param: num_etcd }
  344. resource_def:
  345. type: heat_stack_server.yaml
  346. properties:
  347. name:
  348. str_replace:
  349. template: cluster_id-k8s_type-%index%
  350. params:
  351. cluster_id: { get_param: cluster_id }
  352. k8s_type: etcd
  353. cluster_env: { get_param: cluster_env }
  354. cluster_id: { get_param: cluster_id }
  355. type: etcd
  356. image: { get_param: etcd_image }
  357. flavor: { get_param: etcd_flavor }
  358. key_name: { get_resource: keypair }
  359. net: { get_resource: net }
  360. subnet: { get_resource: subnet }
  361. secgrp:
  362. - { get_resource: etcd-secgrp }
  363. floating_network: { get_param: external_net }
  364. net_name:
  365. str_replace:
  366. template: openshift-ansible-cluster_id-net
  367. params:
  368. cluster_id: { get_param: cluster_id }
  369. depends_on:
  370. - interface
  371. masters:
  372. type: OS::Heat::ResourceGroup
  373. properties:
  374. count: { get_param: num_masters }
  375. resource_def:
  376. type: heat_stack_server.yaml
  377. properties:
  378. name:
  379. str_replace:
  380. template: cluster_id-k8s_type-%index%
  381. params:
  382. cluster_id: { get_param: cluster_id }
  383. k8s_type: master
  384. cluster_env: { get_param: cluster_env }
  385. cluster_id: { get_param: cluster_id }
  386. type: master
  387. image: { get_param: master_image }
  388. flavor: { get_param: master_flavor }
  389. key_name: { get_resource: keypair }
  390. net: { get_resource: net }
  391. subnet: { get_resource: subnet }
  392. secgrp:
  393. - { get_resource: master-secgrp }
  394. - { get_resource: node-secgrp }
  395. floating_network: { get_param: external_net }
  396. net_name:
  397. str_replace:
  398. template: openshift-ansible-cluster_id-net
  399. params:
  400. cluster_id: { get_param: cluster_id }
  401. depends_on:
  402. - interface
  403. compute_nodes:
  404. type: OS::Heat::ResourceGroup
  405. properties:
  406. count: { get_param: num_nodes }
  407. resource_def:
  408. type: heat_stack_server.yaml
  409. properties:
  410. name:
  411. str_replace:
  412. template: cluster_id-k8s_type-sub_host_type-%index%
  413. params:
  414. cluster_id: { get_param: cluster_id }
  415. k8s_type: node
  416. sub_host_type: compute
  417. cluster_env: { get_param: cluster_env }
  418. cluster_id: { get_param: cluster_id }
  419. type: node
  420. subtype: compute
  421. image: { get_param: node_image }
  422. flavor: { get_param: node_flavor }
  423. key_name: { get_resource: keypair }
  424. net: { get_resource: net }
  425. subnet: { get_resource: subnet }
  426. secgrp:
  427. - { get_resource: node-secgrp }
  428. floating_network: { get_param: external_net }
  429. net_name:
  430. str_replace:
  431. template: openshift-ansible-cluster_id-net
  432. params:
  433. cluster_id: { get_param: cluster_id }
  434. depends_on:
  435. - interface
  436. infra_nodes:
  437. type: OS::Heat::ResourceGroup
  438. properties:
  439. count: { get_param: num_infra }
  440. resource_def:
  441. type: heat_stack_server.yaml
  442. properties:
  443. name:
  444. str_replace:
  445. template: cluster_id-k8s_type-sub_host_type-%index%
  446. params:
  447. cluster_id: { get_param: cluster_id }
  448. k8s_type: node
  449. sub_host_type: infra
  450. cluster_env: { get_param: cluster_env }
  451. cluster_id: { get_param: cluster_id }
  452. type: node
  453. subtype: infra
  454. image: { get_param: infra_image }
  455. flavor: { get_param: infra_flavor }
  456. key_name: { get_resource: keypair }
  457. net: { get_resource: net }
  458. subnet: { get_resource: subnet }
  459. secgrp:
  460. - { get_resource: node-secgrp }
  461. - { get_resource: infra-secgrp }
  462. floating_network: { get_param: external_net }
  463. net_name:
  464. str_replace:
  465. template: openshift-ansible-cluster_id-net
  466. params:
  467. cluster_id: { get_param: cluster_id }
  468. depends_on:
  469. - interface