heat_stack.yaml 18 KB

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