heat_stack.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. heat_template_version: 2014-10-16
  2. description: OpenShift cluster
  3. parameters:
  4. cluster-id:
  5. type: string
  6. label: Cluster ID
  7. description: Identifier of the cluster
  8. network-prefix:
  9. type: string
  10. label: Network prefix
  11. description: Prefix of the network objects
  12. cidr:
  13. type: string
  14. label: CIDR
  15. description: CIDR of the network of the cluster
  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-incoming:
  26. type: string
  27. label: Source of ssh connections
  28. description: Source of legitimate ssh connections
  29. resources:
  30. net:
  31. type: OS::Neutron::Net
  32. properties:
  33. name:
  34. str_replace:
  35. template: network-prefix-net
  36. params:
  37. network-prefix: { get_param: network-prefix }
  38. subnet:
  39. type: OS::Neutron::Subnet
  40. properties:
  41. name:
  42. str_replace:
  43. template: network-prefix-subnet
  44. params:
  45. network-prefix: { get_param: network-prefix }
  46. network: { get_resource: net }
  47. cidr: { get_param: cidr }
  48. dns_nameservers: { get_param: dns-nameservers }
  49. router:
  50. type: OS::Neutron::Router
  51. properties:
  52. name:
  53. str_replace:
  54. template: network-prefix-router
  55. params:
  56. network-prefix: { get_param: network-prefix }
  57. external_gateway_info:
  58. network: { get_param: external-net }
  59. interface:
  60. type: OS::Neutron::RouterInterface
  61. properties:
  62. router_id: { get_resource: router }
  63. subnet_id: { get_resource: subnet }
  64. node-secgrp:
  65. type: OS::Neutron::SecurityGroup
  66. properties:
  67. name:
  68. str_replace:
  69. template: network-prefix-node-secgrp
  70. params:
  71. network-prefix: { get_param: network-prefix }
  72. description:
  73. str_replace:
  74. template: Security group for cluster-id OpenShift cluster nodes
  75. params:
  76. cluster-id: { get_param: cluster-id }
  77. rules:
  78. - direction: ingress
  79. protocol: tcp
  80. port_range_min: 22
  81. port_range_max: 22
  82. remote_ip_prefix: { get_param: ssh-incoming }
  83. - direction: ingress
  84. protocol: udp
  85. port_range_min: 4789
  86. port_range_max: 4789
  87. remote_mode: remote_group_id
  88. - direction: ingress
  89. protocol: tcp
  90. port_range_min: 10250
  91. port_range_max: 10250
  92. remote_mode: remote_group_id
  93. remote_group_id: { get_resource: master-secgrp }
  94. master-secgrp:
  95. type: OS::Neutron::SecurityGroup
  96. properties:
  97. name:
  98. str_replace:
  99. template: network-prefix-master-secgrp
  100. params:
  101. network-prefix: { get_param: network-prefix }
  102. description:
  103. str_replace:
  104. template: Security group for cluster-id OpenShift cluster master
  105. params:
  106. cluster-id: { get_param: cluster-id }
  107. rules:
  108. - direction: ingress
  109. protocol: tcp
  110. port_range_min: 22
  111. port_range_max: 22
  112. remote_ip_prefix: { get_param: ssh-incoming }
  113. - direction: ingress
  114. protocol: tcp
  115. port_range_min: 4001
  116. port_range_max: 4001
  117. - direction: ingress
  118. protocol: tcp
  119. port_range_min: 8443
  120. port_range_max: 8443
  121. - direction: ingress
  122. protocol: tcp
  123. port_range_min: 53
  124. port_range_max: 53
  125. - direction: ingress
  126. protocol: udp
  127. port_range_min: 53
  128. port_range_max: 53
  129. - direction: ingress
  130. protocol: tcp
  131. port_range_min: 24224
  132. port_range_max: 24224
  133. - direction: ingress
  134. protocol: udp
  135. port_range_min: 24224
  136. port_range_max: 24224