main.yml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. ---
  2. openshift_aws_create_s3: True
  3. openshift_aws_create_iam_cert: True
  4. openshift_aws_create_security_groups: True
  5. openshift_aws_create_launch_config: True
  6. openshift_aws_create_scale_group: True
  7. openshift_aws_wait_for_ssh: True
  8. openshift_aws_clusterid: default
  9. openshift_aws_region: us-east-1
  10. openshift_aws_vpc_name: "{{ openshift_aws_clusterid }}"
  11. openshift_aws_build_ami_group: "{{ openshift_aws_clusterid }}"
  12. openshift_aws_iam_cert_name: "{{ openshift_aws_clusterid }}-master-external"
  13. openshift_aws_iam_cert_path: ''
  14. openshift_aws_iam_cert_key_path: ''
  15. openshift_aws_scale_group_basename: "{{ openshift_aws_clusterid }} openshift"
  16. openshift_aws_iam_kms_alias: "alias/{{ openshift_aws_clusterid }}_kms"
  17. openshift_aws_ami: ''
  18. openshift_aws_ami_copy_wait: False
  19. openshift_aws_ami_encrypt: False
  20. openshift_aws_ami_copy_src_region: "{{ openshift_aws_region }}"
  21. openshift_aws_ami_name: openshift-gi
  22. openshift_aws_base_ami_name: ami_base
  23. openshift_aws_launch_config_bootstrap_token: ''
  24. openshift_aws_launch_config_basename: "{{ openshift_aws_clusterid }}"
  25. openshift_aws_users: []
  26. openshift_aws_ami_tags:
  27. bootstrap: "true"
  28. openshift-created: "true"
  29. clusterid: "{{ openshift_aws_clusterid }}"
  30. openshift_aws_s3_mode: create
  31. openshift_aws_s3_bucket_name: "{{ openshift_aws_clusterid }}-docker-registry"
  32. openshift_aws_elb_health_check:
  33. ping_protocol: tcp
  34. ping_port: 443
  35. response_timeout: 5
  36. interval: 30
  37. unhealthy_threshold: 2
  38. healthy_threshold: 2
  39. openshift_aws_elb_basename: "{{ openshift_aws_clusterid }}"
  40. openshift_aws_elb_name_dict:
  41. master:
  42. external: "{{ openshift_aws_elb_basename }}-master-external"
  43. internal: "{{ openshift_aws_elb_basename }}-master-internal"
  44. infra:
  45. external: "{{ openshift_aws_elb_basename }}-infra"
  46. openshift_aws_elb_idle_timout: 400
  47. openshift_aws_elb_scheme: internet-facing
  48. openshift_aws_elb_cert_arn: ''
  49. openshift_aws_elb_dict:
  50. master:
  51. external:
  52. - protocol: tcp
  53. load_balancer_port: 80
  54. instance_protocol: ssl
  55. instance_port: 443
  56. - protocol: ssl
  57. load_balancer_port: 443
  58. instance_protocol: ssl
  59. instance_port: 443
  60. # ssl certificate required for https or ssl
  61. ssl_certificate_id: "{{ openshift_aws_elb_cert_arn }}"
  62. internal:
  63. - protocol: tcp
  64. load_balancer_port: 80
  65. instance_protocol: tcp
  66. instance_port: 80
  67. - protocol: tcp
  68. load_balancer_port: 443
  69. instance_protocol: tcp
  70. instance_port: 443
  71. infra:
  72. external:
  73. - protocol: tcp
  74. load_balancer_port: 80
  75. instance_protocol: tcp
  76. instance_port: 443
  77. proxy_protocol: True
  78. - protocol: tcp
  79. load_balancer_port: 443
  80. instance_protocol: tcp
  81. instance_port: 443
  82. proxy_protocol: True
  83. openshift_aws_node_group_config_master_volumes:
  84. - device_name: /dev/sdb
  85. volume_size: 100
  86. device_type: gp2
  87. delete_on_termination: False
  88. openshift_aws_node_group_config_node_volumes:
  89. - device_name: /dev/sdb
  90. volume_size: 100
  91. device_type: gp2
  92. delete_on_termination: True
  93. openshift_aws_node_group_config_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  94. openshift_aws_node_group_termination_policy: Default
  95. openshift_aws_node_group_replace_instances: []
  96. openshift_aws_node_group_replace_all_instances: False
  97. openshift_aws_node_group_config_extra_labels: {}
  98. openshift_aws_ami_map:
  99. master: "{{ openshift_aws_ami }}"
  100. infra: "{{ openshift_aws_ami }}"
  101. compute: "{{ openshift_aws_ami }}"
  102. openshift_aws_master_group_config:
  103. # The 'master' key is always required here.
  104. master:
  105. instance_type: m4.xlarge
  106. volumes: "{{ openshift_aws_node_group_config_master_volumes }}"
  107. health_check:
  108. period: 60
  109. type: EC2
  110. min_size: 3
  111. max_size: 3
  112. desired_size: 3
  113. tags:
  114. host-type: master
  115. sub-host-type: default
  116. labels:
  117. type: master
  118. wait_for_instances: True
  119. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  120. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  121. elbs: "{{ openshift_aws_elb_name_dict['master'].keys()| map('extract', openshift_aws_elb_name_dict['master']) | list }}"
  122. openshift_aws_node_group_config:
  123. # The 'compute' key is always required here.
  124. compute:
  125. instance_type: m4.xlarge
  126. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  127. health_check:
  128. period: 60
  129. type: EC2
  130. min_size: 3
  131. max_size: 100
  132. desired_size: 3
  133. tags:
  134. host-type: node
  135. sub-host-type: compute
  136. labels:
  137. type: compute
  138. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  139. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  140. # The 'infra' key is always required here.
  141. infra:
  142. instance_type: m4.xlarge
  143. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  144. health_check:
  145. period: 60
  146. type: EC2
  147. min_size: 2
  148. max_size: 20
  149. desired_size: 2
  150. tags:
  151. host-type: node
  152. sub-host-type: infra
  153. labels:
  154. type: infra
  155. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  156. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  157. elbs: "{{ openshift_aws_elb_name_dict['infra'].keys()| map('extract', openshift_aws_elb_name_dict['infra']) | list }}"
  158. openshift_aws_elb_tags: "{{ openshift_aws_kube_tags }}"
  159. openshift_aws_elb_az_load_balancing: False
  160. openshift_aws_kube_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  161. openshift_aws_elb_security_groups: "{{ openshift_aws_launch_config_security_groups }}"
  162. openshift_aws_launch_config_security_groups:
  163. compute:
  164. - "{{ openshift_aws_clusterid }}" # default sg
  165. - "{{ openshift_aws_clusterid }}_compute" # node type sg
  166. - "{{ openshift_aws_clusterid }}_compute_k8s" # node type sg k8s
  167. infra:
  168. - "{{ openshift_aws_clusterid }}" # default sg
  169. - "{{ openshift_aws_clusterid }}_infra" # node type sg
  170. - "{{ openshift_aws_clusterid }}_infra_k8s" # node type sg k8s
  171. master:
  172. - "{{ openshift_aws_clusterid }}" # default sg
  173. - "{{ openshift_aws_clusterid }}_master" # node type sg
  174. - "{{ openshift_aws_clusterid }}_master_k8s" # node type sg k8s
  175. openshift_aws_security_groups_tags: "{{ openshift_aws_kube_tags }}"
  176. openshift_aws_node_security_groups:
  177. default:
  178. name: "{{ openshift_aws_clusterid }}"
  179. desc: "{{ openshift_aws_clusterid }} default"
  180. rules:
  181. - proto: tcp
  182. from_port: 22
  183. to_port: 22
  184. cidr_ip: 0.0.0.0/0
  185. - proto: all
  186. from_port: all
  187. to_port: all
  188. group_name: "{{ openshift_aws_clusterid }}"
  189. master:
  190. name: "{{ openshift_aws_clusterid }}_master"
  191. desc: "{{ openshift_aws_clusterid }} master instances"
  192. rules:
  193. - proto: tcp
  194. from_port: 80
  195. to_port: 80
  196. cidr_ip: 0.0.0.0/0
  197. - proto: tcp
  198. from_port: 443
  199. to_port: 443
  200. cidr_ip: 0.0.0.0/0
  201. compute:
  202. name: "{{ openshift_aws_clusterid }}_compute"
  203. desc: "{{ openshift_aws_clusterid }} compute node instances"
  204. infra:
  205. name: "{{ openshift_aws_clusterid }}_infra"
  206. desc: "{{ openshift_aws_clusterid }} infra node instances"
  207. rules:
  208. - proto: tcp
  209. from_port: 80
  210. to_port: 80
  211. cidr_ip: 0.0.0.0/0
  212. - proto: tcp
  213. from_port: 443
  214. to_port: 443
  215. cidr_ip: 0.0.0.0/0
  216. - proto: tcp
  217. from_port: 30000
  218. to_port: 32000
  219. cidr_ip: 0.0.0.0/0
  220. etcd:
  221. name: "{{ openshift_aws_clusterid }}_etcd"
  222. desc: "{{ openshift_aws_clusterid }} etcd instances"
  223. openshift_aws_vpc_tags:
  224. Name: "{{ openshift_aws_vpc_name }}"
  225. openshift_aws_subnet_name: us-east-1c
  226. openshift_aws_vpc:
  227. name: "{{ openshift_aws_vpc_name }}"
  228. cidr: 172.31.0.0/16
  229. subnets:
  230. us-east-1:
  231. - cidr: 172.31.48.0/20
  232. az: "us-east-1c"
  233. - cidr: 172.31.32.0/20
  234. az: "us-east-1e"
  235. - cidr: 172.31.16.0/20
  236. az: "us-east-1a"
  237. openshift_aws_node_run_bootstrap_startup: True
  238. openshift_aws_node_user_data: ''
  239. openshift_aws_node_config_namespace: openshift-node
  240. # If creating extra node groups, you'll need to define all of the following
  241. # The format is the same as openshift_aws_node_group_config, but the top-level
  242. # key names should be different (ie, not == master or infra).
  243. # openshift_aws_node_group_config_extra: {}
  244. # This variable should look like openshift_aws_launch_config_security_groups
  245. # and contain a one-to-one mapping of top level keys that are defined in
  246. # openshift_aws_node_group_config_extra.
  247. # openshift_aws_launch_config_security_groups_extra: {}
  248. # openshift_aws_node_security_groups_extra: {}
  249. # openshift_aws_ami_map_extra: {}