main.yml 9.1 KB

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