main.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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_{{ openshift_aws_clusterid }}"
  18. openshift_aws_iam_role_policy_json: "{{ lookup('file', 'describeinstances.json') }}"
  19. openshift_aws_iam_role_policy_name: "describe_instances_{{ openshift_aws_clusterid }}"
  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_copy_base_ami_tags: False
  30. openshift_aws_ami_tags:
  31. bootstrap: "true"
  32. openshift-created: "true"
  33. parent: "{{ openshift_aws_base_ami | default('unknown') }}"
  34. openshift_aws_s3_mode: create
  35. openshift_aws_s3_bucket_name: "{{ openshift_aws_clusterid }}-docker-registry"
  36. openshift_aws_elb_basename: "{{ openshift_aws_clusterid }}"
  37. openshift_aws_elb_cert_arn: ''
  38. openshift_aws_elb_dict:
  39. master:
  40. external:
  41. cross_az_load_balancing: False
  42. health_check:
  43. ping_protocol: tcp
  44. ping_port: "{{ openshift_master_api_port }}"
  45. response_timeout: 5
  46. interval: 30
  47. unhealthy_threshold: 2
  48. healthy_threshold: 2
  49. idle_timeout: 400
  50. listeners:
  51. - protocol: tcp
  52. load_balancer_port: 80
  53. instance_protocol: ssl
  54. instance_port: "{{ openshift_master_api_port }}"
  55. - protocol: ssl
  56. load_balancer_port: "{{ openshift_master_api_port }}"
  57. instance_protocol: ssl
  58. instance_port: "{{ openshift_master_api_port }}"
  59. ssl_certificate_id: "{{ openshift_aws_elb_cert_arn }}"
  60. name: "{{ openshift_aws_elb_basename }}-master-external"
  61. tags: "{{ openshift_aws_kube_tags }}"
  62. internal:
  63. cross_az_load_balancing: False
  64. health_check:
  65. ping_protocol: tcp
  66. ping_port: "{{ openshift_master_api_port }}"
  67. response_timeout: 5
  68. interval: 30
  69. unhealthy_threshold: 2
  70. healthy_threshold: 2
  71. idle_timeout: 400
  72. listeners:
  73. - protocol: tcp
  74. load_balancer_port: 80
  75. instance_protocol: tcp
  76. instance_port: 80
  77. - protocol: tcp
  78. load_balancer_port: "{{ openshift_master_api_port }}"
  79. instance_protocol: tcp
  80. instance_port: "{{ openshift_master_api_port }}"
  81. name: "{{ openshift_aws_elb_basename }}-master-internal"
  82. tags: "{{ openshift_aws_kube_tags }}"
  83. infra:
  84. external:
  85. cross_az_load_balancing: False
  86. health_check:
  87. ping_protocol: tcp
  88. ping_port: 443
  89. response_timeout: 5
  90. interval: 30
  91. unhealthy_threshold: 2
  92. healthy_threshold: 2
  93. idle_timeout: 400
  94. listeners:
  95. - protocol: tcp
  96. load_balancer_port: 80
  97. instance_protocol: tcp
  98. instance_port: 80
  99. proxy_protocol: True
  100. - protocol: tcp
  101. load_balancer_port: 443
  102. instance_protocol: tcp
  103. instance_port: 443
  104. proxy_protocol: True
  105. name: "{{ openshift_aws_elb_basename }}-infra"
  106. tags: "{{ openshift_aws_kube_tags }}"
  107. openshift_aws_node_group_config_master_volumes:
  108. - device_name: /dev/sda1
  109. volume_size: 100
  110. volume_type: gp2
  111. delete_on_termination: False
  112. - device_name: /dev/sdb
  113. volume_size: 100
  114. volume_type: gp2
  115. delete_on_termination: False
  116. openshift_aws_node_group_config_node_volumes:
  117. - device_name: /dev/sda1
  118. volume_size: 100
  119. volume_type: gp2
  120. delete_on_termination: True
  121. - device_name: /dev/sdb
  122. volume_size: 100
  123. volume_type: gp2
  124. delete_on_termination: True
  125. # build_instance_tags is a custom filter in role lib_utils
  126. openshift_aws_node_group_config_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  127. openshift_aws_node_group_termination_policy: Default
  128. openshift_aws_node_group_replace_instances: []
  129. openshift_aws_node_group_replace_all_instances: False
  130. openshift_aws_ami_map:
  131. master: "{{ openshift_aws_ami }}"
  132. infra: "{{ openshift_aws_ami }}"
  133. compute: "{{ openshift_aws_ami }}"
  134. openshift_aws_master_group:
  135. - name: "{{ openshift_aws_clusterid }} master group"
  136. group: master
  137. tags:
  138. host-type: master
  139. sub-host-type: master
  140. runtime: docker
  141. openshift_aws_node_groups:
  142. - name: "{{ openshift_aws_clusterid }} compute group"
  143. group: compute
  144. tags:
  145. host-type: node
  146. sub-host-type: compute
  147. runtime: docker
  148. - name: "{{ openshift_aws_clusterid }} infra group"
  149. group: infra
  150. tags:
  151. host-type: node
  152. sub-host-type: infra
  153. runtime: docker
  154. openshift_aws_node_group_mappings:
  155. master: 'node-config-master'
  156. compute: 'node-config-compute'
  157. infra: 'node-config-infra'
  158. openshift_aws_created_asgs: []
  159. openshift_aws_current_asgs: []
  160. openshift_aws_scale_group_health_check:
  161. period: 60
  162. type: EC2
  163. # these will be used during upgrade
  164. openshift_aws_master_group_config:
  165. # The 'master' key is always required here.
  166. master:
  167. instance_type: "{{ openshift_aws_master_group_instance_type | default('m4.xlarge') }}"
  168. volumes: "{{ openshift_aws_node_group_config_master_volumes }}"
  169. health_check: "{{ openshift_aws_scale_group_health_check }}"
  170. min_size: "{{ openshift_aws_master_group_min_size | default(3) }}"
  171. max_size: "{{ openshift_aws_master_group_max_size | default(3) }}"
  172. desired_size: "{{ openshift_aws_master_group_desired_size | default(3) }}"
  173. wait_for_instances: True
  174. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  175. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  176. iam_role: "{{ openshift_aws_iam_master_role_name | default(openshift_aws_iam_role_name) }}"
  177. policy_name: "{{ openshift_aws_iam_master_role_policy_name | default(openshift_aws_iam_role_policy_name) }}"
  178. policy_json: "{{ openshift_aws_iam_master_role_policy_json | default(openshift_aws_iam_role_policy_json) }}"
  179. elbs: "{{ openshift_aws_elb_dict | json_query('master.[*][0][*].name') }}"
  180. openshift_aws_node_group_config:
  181. # The 'compute' key is always required here.
  182. compute:
  183. instance_type: "{{ openshift_aws_compute_group_instance_type | default('m4.xlarge') }}"
  184. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  185. health_check: "{{ openshift_aws_scale_group_health_check }}"
  186. min_size: "{{ openshift_aws_compute_group_min_size | default(3) }}"
  187. max_size: "{{ openshift_aws_compute_group_max_size | default(100) }}"
  188. desired_size: "{{ openshift_aws_compute_group_desired_size | default(3) }}"
  189. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  190. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  191. iam_role: "{{ openshift_aws_iam_node_role_name | default(openshift_aws_iam_role_name) }}"
  192. policy_name: "{{ openshift_aws_iam_node_role_policy_name | default(openshift_aws_iam_role_policy_name) }}"
  193. policy_json: "{{ openshift_aws_iam_node_role_policy_json | default(openshift_aws_iam_role_policy_json) }}"
  194. # The 'infra' key is always required here.
  195. infra:
  196. instance_type: "{{ openshift_aws_infra_group_instance_type | default('m4.xlarge') }}"
  197. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  198. health_check: "{{ openshift_aws_scale_group_health_check }}"
  199. min_size: "{{ openshift_aws_infra_group_min_size | default(2) }}"
  200. max_size: "{{ openshift_aws_infra_group_max_size | default(20) }}"
  201. desired_size: "{{ openshift_aws_infra_group_desired_size | default(2) }}"
  202. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  203. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  204. iam_role: "{{ openshift_aws_iam_node_role_name | default(openshift_aws_iam_role_name) }}"
  205. policy_name: "{{ openshift_aws_iam_node_role_policy_name | default(openshift_aws_iam_role_policy_name) }}"
  206. policy_json: "{{ openshift_aws_iam_node_role_policy_json | default(openshift_aws_iam_role_policy_json) }}"
  207. elbs: "{{ openshift_aws_elb_dict | json_query('infra.[*][0][*].name') }}"
  208. # build_instance_tags is a custom filter in role lib_utils
  209. openshift_aws_kube_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  210. openshift_aws_elb_security_groups: "{{ openshift_aws_launch_config_security_groups }}"
  211. openshift_aws_launch_config_security_groups:
  212. compute:
  213. - "{{ openshift_aws_clusterid }}" # default sg
  214. - "{{ openshift_aws_clusterid }}_compute" # node type sg
  215. - "{{ openshift_aws_clusterid }}_compute_k8s" # node type sg k8s
  216. infra:
  217. - "{{ openshift_aws_clusterid }}" # default sg
  218. - "{{ openshift_aws_clusterid }}_infra" # node type sg
  219. - "{{ openshift_aws_clusterid }}_infra_k8s" # node type sg k8s
  220. master:
  221. - "{{ openshift_aws_clusterid }}" # default sg
  222. - "{{ openshift_aws_clusterid }}_master" # node type sg
  223. - "{{ openshift_aws_clusterid }}_master_k8s" # node type sg k8s
  224. openshift_aws_security_groups_tags: "{{ openshift_aws_kube_tags }}"
  225. openshift_aws_node_security_groups:
  226. default:
  227. name: "{{ openshift_aws_clusterid }}"
  228. desc: "{{ openshift_aws_clusterid }} default"
  229. rules:
  230. - proto: tcp
  231. from_port: 22
  232. to_port: 22
  233. cidr_ip: 0.0.0.0/0
  234. - proto: all
  235. from_port: all
  236. to_port: all
  237. group_name: "{{ openshift_aws_clusterid }}"
  238. master:
  239. name: "{{ openshift_aws_clusterid }}_master"
  240. desc: "{{ openshift_aws_clusterid }} master instances"
  241. rules:
  242. - proto: tcp
  243. from_port: 80
  244. to_port: 80
  245. cidr_ip: 0.0.0.0/0
  246. - proto: tcp
  247. from_port: "{{ openshift_master_api_port }}"
  248. to_port: "{{ openshift_master_api_port }}"
  249. cidr_ip: 0.0.0.0/0
  250. compute:
  251. name: "{{ openshift_aws_clusterid }}_compute"
  252. desc: "{{ openshift_aws_clusterid }} compute node instances"
  253. infra:
  254. name: "{{ openshift_aws_clusterid }}_infra"
  255. desc: "{{ openshift_aws_clusterid }} infra node instances"
  256. rules:
  257. - proto: tcp
  258. from_port: 80
  259. to_port: 80
  260. cidr_ip: 0.0.0.0/0
  261. - proto: tcp
  262. from_port: "{{ openshift_master_api_port }}"
  263. to_port: "{{ openshift_master_api_port }}"
  264. cidr_ip: 0.0.0.0/0
  265. - proto: tcp
  266. from_port: 30000
  267. to_port: 32000
  268. cidr_ip: 0.0.0.0/0
  269. etcd:
  270. name: "{{ openshift_aws_clusterid }}_etcd"
  271. desc: "{{ openshift_aws_clusterid }} etcd instances"
  272. openshift_aws_vpc_tags:
  273. Name: "{{ openshift_aws_vpc_name }}"
  274. openshift_aws_vpc:
  275. name: "{{ openshift_aws_vpc_name }}"
  276. cidr: 172.31.0.0/16
  277. subnets:
  278. us-east-1:
  279. - cidr: 172.31.48.0/20
  280. az: "us-east-1c"
  281. default_az: true
  282. - cidr: 172.31.32.0/20
  283. az: "us-east-1e"
  284. - cidr: 172.31.16.0/20
  285. az: "us-east-1a"
  286. openshift_aws_subnet_az: "{{ openshift_aws_vpc.subnets[openshift_aws_region] | get_default_az }}"
  287. openshift_aws_node_run_bootstrap_startup: True
  288. openshift_aws_node_user_data: ''
  289. openshift_aws_node_config_namespace: openshift-node
  290. openshift_aws_masters_groups: masters,etcd,nodes
  291. # By default, don't delete things like the shared IAM instance
  292. # profile and uploaded ssh keys
  293. openshift_aws_enable_uninstall_shared_objects: False
  294. # S3 bucket names are global by default and can take minutes/hours for the
  295. # name to become available for re-use (assuming someone doesn't take the
  296. # name in the meantime). Default to just emptying the contents of the S3
  297. # bucket if we've been asked to create the bucket during provisioning.
  298. openshift_aws_really_delete_s3_bucket: False