heat_stack.yaml 19 KB

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