heat_stack.yaml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  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. num_etcd:
  36. type: number
  37. label: Number of etcd nodes
  38. description: Number of etcd nodes
  39. num_masters:
  40. type: number
  41. label: Number of masters
  42. description: Number of masters
  43. num_nodes:
  44. type: number
  45. label: Number of compute nodes
  46. description: Number of compute nodes
  47. num_infra:
  48. type: number
  49. label: Number of infrastructure nodes
  50. description: Number of infrastructure nodes
  51. etcd_image:
  52. type: string
  53. label: Etcd image
  54. description: Name of the image for the etcd servers
  55. master_image:
  56. type: string
  57. label: Master image
  58. description: Name of the image for the master servers
  59. node_image:
  60. type: string
  61. label: Node image
  62. description: Name of the image for the compute node servers
  63. infra_image:
  64. type: string
  65. label: Infra image
  66. description: Name of the image for the infra node servers
  67. dns_image:
  68. type: string
  69. label: DNS image
  70. description: Name of the image for the DNS server
  71. etcd_flavor:
  72. type: string
  73. label: Etcd flavor
  74. description: Flavor of the etcd servers
  75. master_flavor:
  76. type: string
  77. label: Master flavor
  78. description: Flavor of the master servers
  79. node_flavor:
  80. type: string
  81. label: Node flavor
  82. description: Flavor of the compute node servers
  83. infra_flavor:
  84. type: string
  85. label: Infra flavor
  86. description: Flavor of the infra node servers
  87. dns_flavor:
  88. type: string
  89. label: DNS flavor
  90. description: Flavor of the DNS server
  91. outputs:
  92. etcd_names:
  93. description: Name of the etcds
  94. value: { get_attr: [ etcd, name ] }
  95. etcd_ips:
  96. description: IPs of the etcds
  97. value: { get_attr: [ etcd, private_ip ] }
  98. etcd_floating_ips:
  99. description: Floating IPs of the etcds
  100. value: { get_attr: [ etcd, floating_ip ] }
  101. master_names:
  102. description: Name of the masters
  103. value: { get_attr: [ masters, name ] }
  104. master_ips:
  105. description: IPs of the masters
  106. value: { get_attr: [ masters, private_ip ] }
  107. master_floating_ips:
  108. description: Floating IPs of the masters
  109. value: { get_attr: [ masters, floating_ip ] }
  110. node_names:
  111. description: Name of the nodes
  112. value: { get_attr: [ compute_nodes, name ] }
  113. node_ips:
  114. description: IPs of the nodes
  115. value: { get_attr: [ compute_nodes, private_ip ] }
  116. node_floating_ips:
  117. description: Floating IPs of the nodes
  118. value: { get_attr: [ compute_nodes, floating_ip ] }
  119. infra_names:
  120. description: Name of the nodes
  121. value: { get_attr: [ infra_nodes, name ] }
  122. infra_ips:
  123. description: IPs of the nodes
  124. value: { get_attr: [ infra_nodes, private_ip ] }
  125. infra_floating_ips:
  126. description: Floating IPs of the nodes
  127. value: { get_attr: [ infra_nodes, floating_ip ] }
  128. dns_name:
  129. description: Name of the DNS
  130. value:
  131. get_attr:
  132. - dns
  133. - name
  134. dns_floating_ip:
  135. description: Floating IP of the DNS
  136. value:
  137. get_attr:
  138. - dns
  139. - addresses
  140. - str_replace:
  141. template: openshift-ansible-cluster_id-net
  142. params:
  143. cluster_id: { get_param: cluster_id }
  144. - 1
  145. - addr
  146. resources:
  147. net:
  148. type: OS::Neutron::Net
  149. properties:
  150. name:
  151. str_replace:
  152. template: openshift-ansible-cluster_id-net
  153. params:
  154. cluster_id: { get_param: cluster_id }
  155. subnet:
  156. type: OS::Neutron::Subnet
  157. properties:
  158. name:
  159. str_replace:
  160. template: openshift-ansible-cluster_id-subnet
  161. params:
  162. cluster_id: { get_param: cluster_id }
  163. network: { get_resource: net }
  164. cidr:
  165. str_replace:
  166. template: subnet_24_prefix.0/24
  167. params:
  168. subnet_24_prefix: { get_param: subnet_24_prefix }
  169. allocation_pools:
  170. - start:
  171. str_replace:
  172. template: subnet_24_prefix.3
  173. params:
  174. subnet_24_prefix: { get_param: subnet_24_prefix }
  175. end:
  176. str_replace:
  177. template: subnet_24_prefix.254
  178. params:
  179. subnet_24_prefix: { get_param: subnet_24_prefix }
  180. dns_nameservers:
  181. - str_replace:
  182. template: subnet_24_prefix.2
  183. params:
  184. subnet_24_prefix: { get_param: subnet_24_prefix }
  185. router:
  186. type: OS::Neutron::Router
  187. properties:
  188. name:
  189. str_replace:
  190. template: openshift-ansible-cluster_id-router
  191. params:
  192. cluster_id: { get_param: cluster_id }
  193. external_gateway_info:
  194. network: { get_param: external_net }
  195. interface:
  196. type: OS::Neutron::RouterInterface
  197. properties:
  198. router_id: { get_resource: router }
  199. subnet_id: { get_resource: subnet }
  200. keypair:
  201. type: OS::Nova::KeyPair
  202. properties:
  203. name:
  204. str_replace:
  205. template: openshift-ansible-cluster_id-keypair
  206. params:
  207. cluster_id: { get_param: cluster_id }
  208. public_key: { get_param: ssh_public_key }
  209. master-secgrp:
  210. type: OS::Neutron::SecurityGroup
  211. properties:
  212. name:
  213. str_replace:
  214. template: openshift-ansible-cluster_id-master-secgrp
  215. params:
  216. cluster_id: { get_param: cluster_id }
  217. description:
  218. str_replace:
  219. template: Security group for cluster_id OpenShift cluster master
  220. params:
  221. cluster_id: { get_param: cluster_id }
  222. rules:
  223. - direction: ingress
  224. protocol: tcp
  225. port_range_min: 22
  226. port_range_max: 22
  227. remote_ip_prefix: { get_param: ssh_incoming }
  228. - direction: ingress
  229. protocol: tcp
  230. port_range_min: 4001
  231. port_range_max: 4001
  232. - direction: ingress
  233. protocol: tcp
  234. port_range_min: 8443
  235. port_range_max: 8443
  236. - direction: ingress
  237. protocol: tcp
  238. port_range_min: 53
  239. port_range_max: 53
  240. - direction: ingress
  241. protocol: udp
  242. port_range_min: 53
  243. port_range_max: 53
  244. - direction: ingress
  245. protocol: tcp
  246. port_range_min: 24224
  247. port_range_max: 24224
  248. - direction: ingress
  249. protocol: udp
  250. port_range_min: 24224
  251. port_range_max: 24224
  252. etcd-secgrp:
  253. type: OS::Neutron::SecurityGroup
  254. properties:
  255. name:
  256. str_replace:
  257. template: openshift-ansible-cluster_id-etcd-secgrp
  258. params:
  259. cluster_id: { get_param: cluster_id }
  260. description:
  261. str_replace:
  262. template: Security group for cluster_id etcd cluster
  263. params:
  264. cluster_id: { get_param: cluster_id }
  265. rules:
  266. - direction: ingress
  267. protocol: tcp
  268. port_range_min: 22
  269. port_range_max: 22
  270. remote_ip_prefix: { get_param: ssh_incoming }
  271. - direction: ingress
  272. protocol: tcp
  273. port_range_min: 2379
  274. port_range_max: 2379
  275. remote_mode: remote_group_id
  276. remote_group_id: { get_resource: master-secgrp }
  277. - direction: ingress
  278. protocol: tcp
  279. port_range_min: 2380
  280. port_range_max: 2380
  281. remote_mode: remote_group_id
  282. node-secgrp:
  283. type: OS::Neutron::SecurityGroup
  284. properties:
  285. name:
  286. str_replace:
  287. template: openshift-ansible-cluster_id-node-secgrp
  288. params:
  289. cluster_id: { get_param: cluster_id }
  290. description:
  291. str_replace:
  292. template: Security group for cluster_id OpenShift cluster nodes
  293. params:
  294. cluster_id: { get_param: cluster_id }
  295. rules:
  296. - direction: ingress
  297. protocol: tcp
  298. port_range_min: 22
  299. port_range_max: 22
  300. remote_ip_prefix: { get_param: ssh_incoming }
  301. - direction: ingress
  302. protocol: tcp
  303. port_range_min: 10250
  304. port_range_max: 10250
  305. remote_mode: remote_group_id
  306. - direction: ingress
  307. protocol: udp
  308. port_range_min: 4789
  309. port_range_max: 4789
  310. remote_mode: remote_group_id
  311. infra-secgrp:
  312. type: OS::Neutron::SecurityGroup
  313. properties:
  314. name:
  315. str_replace:
  316. template: openshift-ansible-cluster_id-infra-secgrp
  317. params:
  318. cluster_id: { get_param: cluster_id }
  319. description:
  320. str_replace:
  321. template: Security group for cluster_id OpenShift infrastructure cluster nodes
  322. params:
  323. cluster_id: { get_param: cluster_id }
  324. rules:
  325. - direction: ingress
  326. protocol: tcp
  327. port_range_min: 80
  328. port_range_max: 80
  329. - direction: ingress
  330. protocol: tcp
  331. port_range_min: 443
  332. port_range_max: 443
  333. dns-secgrp:
  334. type: OS::Neutron::SecurityGroup
  335. properties:
  336. name:
  337. str_replace:
  338. template: openshift-ansible-cluster_id-dns-secgrp
  339. params:
  340. cluster_id: { get_param: cluster_id }
  341. description:
  342. str_replace:
  343. template: Security group for cluster_id cluster DNS
  344. params:
  345. cluster_id: { get_param: cluster_id }
  346. rules:
  347. - direction: ingress
  348. protocol: tcp
  349. port_range_min: 22
  350. port_range_max: 22
  351. remote_ip_prefix: { get_param: ssh_incoming }
  352. - direction: ingress
  353. protocol: udp
  354. port_range_min: 53
  355. port_range_max: 53
  356. remote_mode: remote_group_id
  357. remote_group_id: { get_resource: etcd-secgrp }
  358. - direction: ingress
  359. protocol: udp
  360. port_range_min: 53
  361. port_range_max: 53
  362. remote_mode: remote_group_id
  363. remote_group_id: { get_resource: master-secgrp }
  364. - direction: ingress
  365. protocol: udp
  366. port_range_min: 53
  367. port_range_max: 53
  368. remote_mode: remote_group_id
  369. remote_group_id: { get_resource: node-secgrp }
  370. etcd:
  371. type: OS::Heat::ResourceGroup
  372. properties:
  373. count: { get_param: num_etcd }
  374. resource_def:
  375. type: heat_stack_server.yaml
  376. properties:
  377. name:
  378. str_replace:
  379. template: cluster_id-k8s_type-%index%
  380. params:
  381. cluster_id: { get_param: cluster_id }
  382. k8s_type: etcd
  383. cluster_env: { get_param: cluster_env }
  384. cluster_id: { get_param: cluster_id }
  385. type: etcd
  386. image: { get_param: etcd_image }
  387. flavor: { get_param: etcd_flavor }
  388. key_name: { get_resource: keypair }
  389. net: { get_resource: net }
  390. subnet: { get_resource: subnet }
  391. secgrp:
  392. - { get_resource: etcd-secgrp }
  393. floating_network: { get_param: external_net }
  394. net_name:
  395. str_replace:
  396. template: openshift-ansible-cluster_id-net
  397. params:
  398. cluster_id: { get_param: cluster_id }
  399. depends_on:
  400. - interface
  401. masters:
  402. type: OS::Heat::ResourceGroup
  403. properties:
  404. count: { get_param: num_masters }
  405. resource_def:
  406. type: heat_stack_server.yaml
  407. properties:
  408. name:
  409. str_replace:
  410. template: cluster_id-k8s_type-%index%
  411. params:
  412. cluster_id: { get_param: cluster_id }
  413. k8s_type: master
  414. cluster_env: { get_param: cluster_env }
  415. cluster_id: { get_param: cluster_id }
  416. type: master
  417. image: { get_param: master_image }
  418. flavor: { get_param: master_flavor }
  419. key_name: { get_resource: keypair }
  420. net: { get_resource: net }
  421. subnet: { get_resource: subnet }
  422. secgrp:
  423. - { get_resource: master-secgrp }
  424. - { get_resource: node-secgrp }
  425. floating_network: { get_param: external_net }
  426. net_name:
  427. str_replace:
  428. template: openshift-ansible-cluster_id-net
  429. params:
  430. cluster_id: { get_param: cluster_id }
  431. depends_on:
  432. - interface
  433. compute_nodes:
  434. type: OS::Heat::ResourceGroup
  435. properties:
  436. count: { get_param: num_nodes }
  437. resource_def:
  438. type: heat_stack_server.yaml
  439. properties:
  440. name:
  441. str_replace:
  442. template: cluster_id-k8s_type-sub_host_type-%index%
  443. params:
  444. cluster_id: { get_param: cluster_id }
  445. k8s_type: node
  446. sub_host_type: compute
  447. cluster_env: { get_param: cluster_env }
  448. cluster_id: { get_param: cluster_id }
  449. type: node
  450. subtype: compute
  451. image: { get_param: node_image }
  452. flavor: { get_param: node_flavor }
  453. key_name: { get_resource: keypair }
  454. net: { get_resource: net }
  455. subnet: { get_resource: subnet }
  456. secgrp:
  457. - { get_resource: node-secgrp }
  458. floating_network: { get_param: external_net }
  459. net_name:
  460. str_replace:
  461. template: openshift-ansible-cluster_id-net
  462. params:
  463. cluster_id: { get_param: cluster_id }
  464. depends_on:
  465. - interface
  466. infra_nodes:
  467. type: OS::Heat::ResourceGroup
  468. properties:
  469. count: { get_param: num_infra }
  470. resource_def:
  471. type: heat_stack_server.yaml
  472. properties:
  473. name:
  474. str_replace:
  475. template: cluster_id-k8s_type-sub_host_type-%index%
  476. params:
  477. cluster_id: { get_param: cluster_id }
  478. k8s_type: node
  479. sub_host_type: infra
  480. cluster_env: { get_param: cluster_env }
  481. cluster_id: { get_param: cluster_id }
  482. type: node
  483. subtype: infra
  484. image: { get_param: infra_image }
  485. flavor: { get_param: infra_flavor }
  486. key_name: { get_resource: keypair }
  487. net: { get_resource: net }
  488. subnet: { get_resource: subnet }
  489. secgrp:
  490. - { get_resource: node-secgrp }
  491. - { get_resource: infra-secgrp }
  492. floating_network: { get_param: external_net }
  493. net_name:
  494. str_replace:
  495. template: openshift-ansible-cluster_id-net
  496. params:
  497. cluster_id: { get_param: cluster_id }
  498. depends_on:
  499. - interface
  500. dns:
  501. type: OS::Nova::Server
  502. properties:
  503. name:
  504. str_replace:
  505. template: cluster_id-dns
  506. params:
  507. cluster_id: { get_param: cluster_id }
  508. key_name: { get_resource: keypair }
  509. image: { get_param: dns_image }
  510. flavor: { get_param: dns_flavor }
  511. networks:
  512. - port: { get_resource: dns-port }
  513. user_data: { get_resource: dns-config }
  514. user_data_format: RAW
  515. dns-port:
  516. type: OS::Neutron::Port
  517. properties:
  518. network: { get_resource: net }
  519. fixed_ips:
  520. - subnet: { get_resource: subnet }
  521. ip_address:
  522. str_replace:
  523. template: subnet_24_prefix.2
  524. params:
  525. subnet_24_prefix: { get_param: subnet_24_prefix }
  526. security_groups:
  527. - { get_resource: dns-secgrp }
  528. dns-floating-ip:
  529. type: OS::Neutron::FloatingIP
  530. properties:
  531. floating_network: { get_param: external_net }
  532. port_id: { get_resource: dns-port }
  533. dns-config:
  534. type: OS::Heat::MultipartMime
  535. properties:
  536. parts:
  537. - config: { get_file: user-data }
  538. - config:
  539. str_replace:
  540. template: |
  541. #cloud-config
  542. write_files:
  543. - path: /etc/sudoers.d/00-openshift-no-requiretty
  544. permissions: 440
  545. content: |
  546. Defaults:openshift !requiretty
  547. - path: /etc/sysconfig/network-scripts/ifcfg-eth0
  548. content: |
  549. DEVICE="eth0"
  550. BOOTPROTO="dhcp"
  551. DNS1="$dns1"
  552. DNS2="$dns2"
  553. PEERDNS="no"
  554. ONBOOT="yes"
  555. runcmd:
  556. - [ "/usr/bin/systemctl", "restart", "network" ]
  557. params:
  558. $dns1:
  559. get_param:
  560. - dns_nameservers
  561. - 0
  562. $dns2:
  563. get_param:
  564. - dns_nameservers
  565. - 1