main.yml 9.4 KB

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