main.yml 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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_node_group_upgrade: False
  9. openshift_aws_wait_for_ssh: True
  10. openshift_aws_clusterid: default
  11. openshift_aws_region: us-east-1
  12. openshift_aws_vpc_name: "{{ openshift_aws_clusterid }}"
  13. openshift_aws_build_ami_group: "{{ openshift_aws_clusterid }}"
  14. openshift_aws_iam_cert_name: "{{ openshift_aws_clusterid }}-master-external"
  15. openshift_aws_iam_cert_path: ''
  16. openshift_aws_iam_cert_key_path: ''
  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_users: []
  29. openshift_aws_ami_tags:
  30. bootstrap: "true"
  31. openshift-created: "true"
  32. parent: "{{ openshift_aws_base_ami | default('unknown') }}"
  33. openshift_aws_s3_mode: create
  34. openshift_aws_s3_bucket_name: "{{ openshift_aws_clusterid }}-docker-registry"
  35. openshift_aws_elb_health_check:
  36. ping_protocol: tcp
  37. ping_port: 443
  38. response_timeout: 5
  39. interval: 30
  40. unhealthy_threshold: 2
  41. healthy_threshold: 2
  42. openshift_aws_elb_basename: "{{ openshift_aws_clusterid }}"
  43. openshift_aws_elb_name_dict:
  44. master:
  45. external: "{{ openshift_aws_elb_basename }}-master-external"
  46. internal: "{{ openshift_aws_elb_basename }}-master-internal"
  47. infra:
  48. external: "{{ openshift_aws_elb_basename }}-infra"
  49. openshift_aws_elb_idle_timout: 400
  50. openshift_aws_elb_cert_arn: ''
  51. openshift_aws_elb_dict:
  52. master:
  53. external:
  54. - protocol: tcp
  55. load_balancer_port: 80
  56. instance_protocol: ssl
  57. instance_port: 443
  58. - protocol: ssl
  59. load_balancer_port: 443
  60. instance_protocol: ssl
  61. instance_port: 443
  62. # ssl certificate required for https or ssl
  63. ssl_certificate_id: "{{ openshift_aws_elb_cert_arn }}"
  64. internal:
  65. - protocol: tcp
  66. load_balancer_port: 80
  67. instance_protocol: tcp
  68. instance_port: 80
  69. - protocol: tcp
  70. load_balancer_port: 443
  71. instance_protocol: tcp
  72. instance_port: 443
  73. infra:
  74. external:
  75. - protocol: tcp
  76. load_balancer_port: 80
  77. instance_protocol: tcp
  78. instance_port: 443
  79. proxy_protocol: True
  80. - protocol: tcp
  81. load_balancer_port: 443
  82. instance_protocol: tcp
  83. instance_port: 443
  84. proxy_protocol: True
  85. openshift_aws_node_group_config_master_volumes:
  86. - device_name: /dev/sda1
  87. volume_size: 100
  88. device_type: gp2
  89. delete_on_termination: False
  90. - device_name: /dev/sdb
  91. volume_size: 100
  92. device_type: gp2
  93. delete_on_termination: False
  94. openshift_aws_node_group_config_node_volumes:
  95. - device_name: /dev/sda1
  96. volume_size: 100
  97. device_type: gp2
  98. delete_on_termination: True
  99. - device_name: /dev/sdb
  100. volume_size: 100
  101. device_type: gp2
  102. delete_on_termination: True
  103. # build_instance_tags is a custom filter in role lib_utils
  104. openshift_aws_node_group_config_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  105. openshift_aws_node_group_termination_policy: Default
  106. openshift_aws_node_group_replace_instances: []
  107. openshift_aws_node_group_replace_all_instances: False
  108. openshift_aws_ami_map:
  109. master: "{{ openshift_aws_ami }}"
  110. infra: "{{ openshift_aws_ami }}"
  111. compute: "{{ openshift_aws_ami }}"
  112. openshift_aws_master_group:
  113. - name: "{{ openshift_aws_clusterid }} master group"
  114. group: master
  115. tags:
  116. host-type: master
  117. sub-host-type: default
  118. runtime: docker
  119. openshift_aws_node_groups:
  120. - name: "{{ openshift_aws_clusterid }} compute group"
  121. group: compute
  122. tags:
  123. host-type: node
  124. sub-host-type: compute
  125. runtime: docker
  126. - name: "{{ openshift_aws_clusterid }} infra group"
  127. group: infra
  128. tags:
  129. host-type: node
  130. sub-host-type: infra
  131. runtime: docker
  132. openshift_aws_created_asgs: []
  133. openshift_aws_current_asgs: []
  134. # these will be used during upgrade
  135. openshift_aws_master_group_config:
  136. # The 'master' key is always required here.
  137. master:
  138. instance_type: m4.xlarge
  139. volumes: "{{ openshift_aws_node_group_config_master_volumes }}"
  140. health_check:
  141. period: 60
  142. type: EC2
  143. min_size: 3
  144. max_size: 3
  145. desired_size: 3
  146. wait_for_instances: True
  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. elbs: "{{ openshift_aws_elb_name_dict['master'].keys()| map('extract', openshift_aws_elb_name_dict['master']) | list }}"
  153. openshift_aws_node_group_config:
  154. # The 'compute' key is always required here.
  155. compute:
  156. instance_type: m4.xlarge
  157. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  158. health_check:
  159. period: 60
  160. type: EC2
  161. min_size: 3
  162. max_size: 100
  163. desired_size: 3
  164. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  165. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  166. iam_role: "{{ openshift_aws_iam_role_name }}"
  167. policy_name: "{{ openshift_aws_iam_role_policy_name }}"
  168. policy_json: "{{ openshift_aws_iam_role_policy_json }}"
  169. # The 'infra' key is always required here.
  170. infra:
  171. instance_type: m4.xlarge
  172. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  173. health_check:
  174. period: 60
  175. type: EC2
  176. min_size: 2
  177. max_size: 20
  178. desired_size: 2
  179. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  180. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  181. iam_role: "{{ openshift_aws_iam_role_name }}"
  182. policy_name: "{{ openshift_aws_iam_role_policy_name }}"
  183. policy_json: "{{ openshift_aws_iam_role_policy_json }}"
  184. elbs: "{{ openshift_aws_elb_name_dict['infra'].keys()| map('extract', openshift_aws_elb_name_dict['infra']) | list }}"
  185. openshift_aws_elb_tags: "{{ openshift_aws_kube_tags }}"
  186. openshift_aws_elb_az_load_balancing: False
  187. # build_instance_tags is a custom filter in role lib_utils
  188. openshift_aws_kube_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  189. openshift_aws_elb_security_groups: "{{ openshift_aws_launch_config_security_groups }}"
  190. openshift_aws_launch_config_security_groups:
  191. compute:
  192. - "{{ openshift_aws_clusterid }}" # default sg
  193. - "{{ openshift_aws_clusterid }}_compute" # node type sg
  194. - "{{ openshift_aws_clusterid }}_compute_k8s" # node type sg k8s
  195. infra:
  196. - "{{ openshift_aws_clusterid }}" # default sg
  197. - "{{ openshift_aws_clusterid }}_infra" # node type sg
  198. - "{{ openshift_aws_clusterid }}_infra_k8s" # node type sg k8s
  199. master:
  200. - "{{ openshift_aws_clusterid }}" # default sg
  201. - "{{ openshift_aws_clusterid }}_master" # node type sg
  202. - "{{ openshift_aws_clusterid }}_master_k8s" # node type sg k8s
  203. openshift_aws_security_groups_tags: "{{ openshift_aws_kube_tags }}"
  204. openshift_aws_node_security_groups:
  205. default:
  206. name: "{{ openshift_aws_clusterid }}"
  207. desc: "{{ openshift_aws_clusterid }} default"
  208. rules:
  209. - proto: tcp
  210. from_port: 22
  211. to_port: 22
  212. cidr_ip: 0.0.0.0/0
  213. - proto: all
  214. from_port: all
  215. to_port: all
  216. group_name: "{{ openshift_aws_clusterid }}"
  217. master:
  218. name: "{{ openshift_aws_clusterid }}_master"
  219. desc: "{{ openshift_aws_clusterid }} master 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. compute:
  230. name: "{{ openshift_aws_clusterid }}_compute"
  231. desc: "{{ openshift_aws_clusterid }} compute node instances"
  232. infra:
  233. name: "{{ openshift_aws_clusterid }}_infra"
  234. desc: "{{ openshift_aws_clusterid }} infra node instances"
  235. rules:
  236. - proto: tcp
  237. from_port: 80
  238. to_port: 80
  239. cidr_ip: 0.0.0.0/0
  240. - proto: tcp
  241. from_port: 443
  242. to_port: 443
  243. cidr_ip: 0.0.0.0/0
  244. - proto: tcp
  245. from_port: 30000
  246. to_port: 32000
  247. cidr_ip: 0.0.0.0/0
  248. etcd:
  249. name: "{{ openshift_aws_clusterid }}_etcd"
  250. desc: "{{ openshift_aws_clusterid }} etcd instances"
  251. openshift_aws_vpc_tags:
  252. Name: "{{ openshift_aws_vpc_name }}"
  253. openshift_aws_vpc:
  254. name: "{{ openshift_aws_vpc_name }}"
  255. cidr: 172.31.0.0/16
  256. subnets:
  257. us-east-1:
  258. - cidr: 172.31.48.0/20
  259. az: "us-east-1c"
  260. default_az: true
  261. - cidr: 172.31.32.0/20
  262. az: "us-east-1e"
  263. - cidr: 172.31.16.0/20
  264. az: "us-east-1a"
  265. openshift_aws_subnet_az: "{{ openshift_aws_vpc.subnets[openshift_aws_region] | get_default_az }}"
  266. openshift_aws_node_run_bootstrap_startup: True
  267. openshift_aws_node_user_data: ''
  268. openshift_aws_node_config_namespace: openshift-node
  269. openshift_aws_masters_groups: masters,etcd,nodes
  270. # By default, don't delete things like the shared IAM instance
  271. # profile and uploaded ssh keys
  272. openshift_aws_enable_uninstall_shared_objects: False