heat_stack.yaml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  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: 8444
  239. port_range_max: 8444
  240. - direction: ingress
  241. protocol: tcp
  242. port_range_min: 53
  243. port_range_max: 53
  244. - direction: ingress
  245. protocol: udp
  246. port_range_min: 53
  247. port_range_max: 53
  248. - direction: ingress
  249. protocol: tcp
  250. port_range_min: 8053
  251. port_range_max: 8053
  252. - direction: ingress
  253. protocol: udp
  254. port_range_min: 8053
  255. port_range_max: 8053
  256. - direction: ingress
  257. protocol: tcp
  258. port_range_min: 24224
  259. port_range_max: 24224
  260. - direction: ingress
  261. protocol: udp
  262. port_range_min: 24224
  263. port_range_max: 24224
  264. - direction: ingress
  265. protocol: tcp
  266. port_range_min: 2224
  267. port_range_max: 2224
  268. - direction: ingress
  269. protocol: udp
  270. port_range_min: 5404
  271. port_range_max: 5404
  272. - direction: ingress
  273. protocol: udp
  274. port_range_min: 5405
  275. port_range_max: 5405
  276. - direction: ingress
  277. protocol: tcp
  278. port_range_min: 9090
  279. port_range_max: 9090
  280. etcd-secgrp:
  281. type: OS::Neutron::SecurityGroup
  282. properties:
  283. name:
  284. str_replace:
  285. template: openshift-ansible-cluster_id-etcd-secgrp
  286. params:
  287. cluster_id: { get_param: cluster_id }
  288. description:
  289. str_replace:
  290. template: Security group for cluster_id etcd cluster
  291. params:
  292. cluster_id: { get_param: cluster_id }
  293. rules:
  294. - direction: ingress
  295. protocol: tcp
  296. port_range_min: 22
  297. port_range_max: 22
  298. remote_ip_prefix: { get_param: ssh_incoming }
  299. - direction: ingress
  300. protocol: tcp
  301. port_range_min: 2379
  302. port_range_max: 2379
  303. remote_mode: remote_group_id
  304. remote_group_id: { get_resource: master-secgrp }
  305. - direction: ingress
  306. protocol: tcp
  307. port_range_min: 2380
  308. port_range_max: 2380
  309. remote_mode: remote_group_id
  310. node-secgrp:
  311. type: OS::Neutron::SecurityGroup
  312. properties:
  313. name:
  314. str_replace:
  315. template: openshift-ansible-cluster_id-node-secgrp
  316. params:
  317. cluster_id: { get_param: cluster_id }
  318. description:
  319. str_replace:
  320. template: Security group for cluster_id OpenShift cluster nodes
  321. params:
  322. cluster_id: { get_param: cluster_id }
  323. rules:
  324. - direction: ingress
  325. protocol: tcp
  326. port_range_min: 22
  327. port_range_max: 22
  328. remote_ip_prefix: { get_param: ssh_incoming }
  329. - direction: ingress
  330. protocol: tcp
  331. port_range_min: 10250
  332. port_range_max: 10250
  333. remote_mode: remote_group_id
  334. - direction: ingress
  335. protocol: tcp
  336. port_range_min: 10255
  337. port_range_max: 10255
  338. remote_mode: remote_group_id
  339. - direction: ingress
  340. protocol: udp
  341. port_range_min: 10255
  342. port_range_max: 10255
  343. remote_mode: remote_group_id
  344. - direction: ingress
  345. protocol: udp
  346. port_range_min: 4789
  347. port_range_max: 4789
  348. remote_mode: remote_group_id
  349. infra-secgrp:
  350. type: OS::Neutron::SecurityGroup
  351. properties:
  352. name:
  353. str_replace:
  354. template: openshift-ansible-cluster_id-infra-secgrp
  355. params:
  356. cluster_id: { get_param: cluster_id }
  357. description:
  358. str_replace:
  359. template: Security group for cluster_id OpenShift infrastructure cluster nodes
  360. params:
  361. cluster_id: { get_param: cluster_id }
  362. rules:
  363. - direction: ingress
  364. protocol: tcp
  365. port_range_min: 80
  366. port_range_max: 80
  367. - direction: ingress
  368. protocol: tcp
  369. port_range_min: 443
  370. port_range_max: 443
  371. dns-secgrp:
  372. type: OS::Neutron::SecurityGroup
  373. properties:
  374. name:
  375. str_replace:
  376. template: openshift-ansible-cluster_id-dns-secgrp
  377. params:
  378. cluster_id: { get_param: cluster_id }
  379. description:
  380. str_replace:
  381. template: Security group for cluster_id cluster DNS
  382. params:
  383. cluster_id: { get_param: cluster_id }
  384. rules:
  385. - direction: ingress
  386. protocol: tcp
  387. port_range_min: 22
  388. port_range_max: 22
  389. remote_ip_prefix: { get_param: ssh_incoming }
  390. - direction: ingress
  391. protocol: udp
  392. port_range_min: 53
  393. port_range_max: 53
  394. remote_mode: remote_group_id
  395. remote_group_id: { get_resource: etcd-secgrp }
  396. - direction: ingress
  397. protocol: udp
  398. port_range_min: 53
  399. port_range_max: 53
  400. remote_mode: remote_group_id
  401. remote_group_id: { get_resource: master-secgrp }
  402. - direction: ingress
  403. protocol: udp
  404. port_range_min: 53
  405. port_range_max: 53
  406. remote_mode: remote_group_id
  407. remote_group_id: { get_resource: node-secgrp }
  408. etcd:
  409. type: OS::Heat::ResourceGroup
  410. properties:
  411. count: { get_param: num_etcd }
  412. resource_def:
  413. type: heat_stack_server.yaml
  414. properties:
  415. name:
  416. str_replace:
  417. template: cluster_id-k8s_type-%index%
  418. params:
  419. cluster_id: { get_param: cluster_id }
  420. k8s_type: etcd
  421. cluster_env: { get_param: cluster_env }
  422. cluster_id: { get_param: cluster_id }
  423. type: etcd
  424. image: { get_param: etcd_image }
  425. flavor: { get_param: etcd_flavor }
  426. key_name: { get_resource: keypair }
  427. net: { get_resource: net }
  428. subnet: { get_resource: subnet }
  429. secgrp:
  430. - { get_resource: etcd-secgrp }
  431. floating_network: { get_param: external_net }
  432. net_name:
  433. str_replace:
  434. template: openshift-ansible-cluster_id-net
  435. params:
  436. cluster_id: { get_param: cluster_id }
  437. depends_on:
  438. - interface
  439. masters:
  440. type: OS::Heat::ResourceGroup
  441. properties:
  442. count: { get_param: num_masters }
  443. resource_def:
  444. type: heat_stack_server.yaml
  445. properties:
  446. name:
  447. str_replace:
  448. template: cluster_id-k8s_type-%index%
  449. params:
  450. cluster_id: { get_param: cluster_id }
  451. k8s_type: master
  452. cluster_env: { get_param: cluster_env }
  453. cluster_id: { get_param: cluster_id }
  454. type: master
  455. image: { get_param: master_image }
  456. flavor: { get_param: master_flavor }
  457. key_name: { get_resource: keypair }
  458. net: { get_resource: net }
  459. subnet: { get_resource: subnet }
  460. secgrp:
  461. - { get_resource: master-secgrp }
  462. - { get_resource: node-secgrp }
  463. floating_network: { get_param: external_net }
  464. net_name:
  465. str_replace:
  466. template: openshift-ansible-cluster_id-net
  467. params:
  468. cluster_id: { get_param: cluster_id }
  469. depends_on:
  470. - interface
  471. compute_nodes:
  472. type: OS::Heat::ResourceGroup
  473. properties:
  474. count: { get_param: num_nodes }
  475. resource_def:
  476. type: heat_stack_server.yaml
  477. properties:
  478. name:
  479. str_replace:
  480. template: cluster_id-k8s_type-sub_host_type-%index%
  481. params:
  482. cluster_id: { get_param: cluster_id }
  483. k8s_type: node
  484. sub_host_type: compute
  485. cluster_env: { get_param: cluster_env }
  486. cluster_id: { get_param: cluster_id }
  487. type: node
  488. subtype: compute
  489. image: { get_param: node_image }
  490. flavor: { get_param: node_flavor }
  491. key_name: { get_resource: keypair }
  492. net: { get_resource: net }
  493. subnet: { get_resource: subnet }
  494. secgrp:
  495. - { get_resource: node-secgrp }
  496. floating_network: { get_param: external_net }
  497. net_name:
  498. str_replace:
  499. template: openshift-ansible-cluster_id-net
  500. params:
  501. cluster_id: { get_param: cluster_id }
  502. depends_on:
  503. - interface
  504. infra_nodes:
  505. type: OS::Heat::ResourceGroup
  506. properties:
  507. count: { get_param: num_infra }
  508. resource_def:
  509. type: heat_stack_server.yaml
  510. properties:
  511. name:
  512. str_replace:
  513. template: cluster_id-k8s_type-sub_host_type-%index%
  514. params:
  515. cluster_id: { get_param: cluster_id }
  516. k8s_type: node
  517. sub_host_type: infra
  518. cluster_env: { get_param: cluster_env }
  519. cluster_id: { get_param: cluster_id }
  520. type: node
  521. subtype: infra
  522. image: { get_param: infra_image }
  523. flavor: { get_param: infra_flavor }
  524. key_name: { get_resource: keypair }
  525. net: { get_resource: net }
  526. subnet: { get_resource: subnet }
  527. secgrp:
  528. - { get_resource: node-secgrp }
  529. - { get_resource: infra-secgrp }
  530. floating_network: { get_param: external_net }
  531. net_name:
  532. str_replace:
  533. template: openshift-ansible-cluster_id-net
  534. params:
  535. cluster_id: { get_param: cluster_id }
  536. depends_on:
  537. - interface
  538. dns:
  539. type: OS::Nova::Server
  540. properties:
  541. name:
  542. str_replace:
  543. template: cluster_id-dns
  544. params:
  545. cluster_id: { get_param: cluster_id }
  546. key_name: { get_resource: keypair }
  547. image: { get_param: dns_image }
  548. flavor: { get_param: dns_flavor }
  549. networks:
  550. - port: { get_resource: dns-port }
  551. user_data: { get_resource: dns-config }
  552. user_data_format: RAW
  553. dns-port:
  554. type: OS::Neutron::Port
  555. properties:
  556. network: { get_resource: net }
  557. fixed_ips:
  558. - subnet: { get_resource: subnet }
  559. ip_address:
  560. str_replace:
  561. template: subnet_24_prefix.2
  562. params:
  563. subnet_24_prefix: { get_param: subnet_24_prefix }
  564. security_groups:
  565. - { get_resource: dns-secgrp }
  566. dns-floating-ip:
  567. type: OS::Neutron::FloatingIP
  568. properties:
  569. floating_network: { get_param: external_net }
  570. port_id: { get_resource: dns-port }
  571. dns-config:
  572. type: OS::Heat::MultipartMime
  573. properties:
  574. parts:
  575. - config:
  576. str_replace:
  577. template: |
  578. #cloud-config
  579. disable_root: true
  580. system_info:
  581. default_user:
  582. name: openshift
  583. sudo: ["ALL=(ALL) NOPASSWD: ALL"]
  584. write_files:
  585. - path: /etc/sudoers.d/00-openshift-no-requiretty
  586. permissions: 440
  587. content: |
  588. Defaults:openshift !requiretty
  589. - path: /etc/sysconfig/network-scripts/ifcfg-eth0
  590. content: |
  591. DEVICE="eth0"
  592. BOOTPROTO="dhcp"
  593. DNS1="$dns1"
  594. DNS2="$dns2"
  595. PEERDNS="no"
  596. ONBOOT="yes"
  597. runcmd:
  598. - [ "/usr/bin/systemctl", "restart", "network" ]
  599. params:
  600. $dns1:
  601. get_param:
  602. - dns_nameservers
  603. - 0
  604. $dns2:
  605. get_param:
  606. - dns_nameservers
  607. - 1