main.yml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. ---
  2. openshift_aws_create_s3: True
  3. openshift_aws_create_iam_cert: True
  4. openshift_aws_delete_iam_cert: "{{ openshift_aws_create_iam_cert }}"
  5. openshift_aws_create_iam_role: False
  6. openshift_aws_create_security_groups: True
  7. openshift_aws_create_launch_config: True
  8. openshift_aws_create_scale_group: True
  9. openshift_aws_node_group_upgrade: False
  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_iam_role_name: "openshift_node_describe_instances_{{ openshift_aws_clusterid }}"
  19. openshift_aws_iam_role_policy_json: "{{ lookup('file', 'describeinstances.json') }}"
  20. openshift_aws_iam_role_policy_name: "describe_instances_{{ openshift_aws_clusterid }}"
  21. openshift_aws_iam_kms_alias: "alias/{{ openshift_aws_clusterid }}_kms"
  22. openshift_aws_ami: ''
  23. openshift_aws_ami_copy_wait: False
  24. openshift_aws_ami_encrypt: False
  25. openshift_aws_ami_copy_src_region: "{{ openshift_aws_region }}"
  26. openshift_aws_ami_name: openshift-gi
  27. openshift_aws_base_ami_name: ami_base
  28. openshift_aws_instance_type: m4.xlarge
  29. openshift_aws_launch_config_bootstrap_token: ''
  30. openshift_aws_users: []
  31. openshift_aws_copy_base_ami_tags: False
  32. openshift_aws_ami_tags:
  33. bootstrap: "true"
  34. openshift-created: "true"
  35. parent: "{{ openshift_aws_base_ami | default('unknown') }}"
  36. openshift_aws_s3_mode: create
  37. openshift_aws_s3_bucket_name: "{{ openshift_aws_clusterid }}-docker-registry"
  38. openshift_aws_vpc_tags:
  39. Name: "{{ openshift_aws_vpc_name }}"
  40. openshift_aws_vpc:
  41. name: "{{ openshift_aws_vpc_name }}"
  42. cidr: 172.31.0.0/16
  43. subnets:
  44. us-east-1:
  45. - cidr: 172.31.48.0/20
  46. az: "us-east-1c"
  47. # Uncomment to enable use of multi availability zone
  48. # Greenfield installs only! Single-az to multi-az migration is not supported!
  49. # - cidr: 172.31.32.0/20
  50. # az: "us-east-1e"
  51. # - cidr: 172.31.16.0/20
  52. # az: "us-east-1a"
  53. openshift_aws_create_dns: False
  54. openshift_aws_dns_provider: "route53"
  55. # openshift_aws_dns_zone: ""
  56. # ie. openshift_aws_dns_zone: "{{ openshift_aws_clusterid }}.example.com"
  57. # elb names we want to query to support dns record creation.
  58. # you don't need to adjust this unless you have modified openshift_aws_elb_dict
  59. openshift_aws_elb_names:
  60. - "{{ openshift_aws_elb_master_internal_name }}"
  61. - "{{ openshift_aws_elb_master_external_name }}"
  62. - "{{ openshift_aws_elb_infra_name }}"
  63. # l_openshift_aws_elb_facts is created by querying ec2 for all elb names in
  64. # l_openshift_aws_elb_names via tasks/build_elb_dict.yml
  65. openshift_aws_dns_records:
  66. # Pertains to inventory file key: openshift_master_cluster_public_hostname
  67. 'api':
  68. type: 'CNAME'
  69. # A public or private vpc attached Route53 zone will be created based on
  70. # private_zone boolean. Split-tier dns is supported.
  71. private_zone: False
  72. value: "{{ l_openshift_aws_elb_facts[openshift_aws_elb_master_external_name].dns_name }}"
  73. # Pertains to inventory file key: openshift_master_cluster_hostname
  74. 'internal.api':
  75. type: 'CNAME'
  76. private_zone: False
  77. value: "{{ l_openshift_aws_elb_facts[openshift_aws_elb_master_internal_name].dns_name }}"
  78. # Pertains to inventory file key: openshift_master_default_subdomain
  79. '*.apps':
  80. type: "CNAME"
  81. private_zone: False
  82. value: "{{ l_openshift_aws_elb_facts[openshift_aws_elb_infra_name].dns_name }}"
  83. 'logs':
  84. type: "CNAME"
  85. private_zone: False
  86. value: "{{ l_openshift_aws_elb_facts[openshift_aws_elb_infra_name].dns_name }}"
  87. 'metrics':
  88. type: "CNAME"
  89. private_zone: False
  90. value: "{{ l_openshift_aws_elb_facts[openshift_aws_elb_infra_name].dns_name }}"
  91. 'registry':
  92. type: "CNAME"
  93. private_zone: False
  94. value: "{{ l_openshift_aws_elb_facts[openshift_aws_elb_infra_name].dns_name }}"
  95. # Allows users to add and recursively override
  96. # https://docs.ansible.com/ansible/2.5/user_guide/playbooks_filters.html#combining-hashes-dictionaries
  97. openshift_aws_dns_records_override: {}
  98. l_openshift_aws_dns_records: "{{ openshift_aws_dns_records | combine(openshift_aws_dns_records_override, recursive=True) }}"
  99. openshift_aws_elb_basename: "{{ openshift_aws_clusterid }}"
  100. openshift_aws_elb_master_external_name: "{{ openshift_aws_elb_basename }}-master-external"
  101. openshift_aws_elb_master_internal_name: "{{ openshift_aws_elb_basename }}-master-internal"
  102. openshift_aws_elb_infra_name: "{{ openshift_aws_elb_basename }}-infra"
  103. openshift_aws_elb_cert_arn: ''
  104. openshift_aws_elb_dict:
  105. master:
  106. external:
  107. cross_az_load_balancing: False
  108. health_check:
  109. ping_protocol: tcp
  110. ping_port: "{{ openshift_master_api_port }}"
  111. response_timeout: 5
  112. interval: 30
  113. unhealthy_threshold: 2
  114. healthy_threshold: 2
  115. idle_timeout: 400
  116. listeners:
  117. - protocol: tcp
  118. load_balancer_port: 80
  119. instance_protocol: ssl
  120. instance_port: "{{ openshift_master_api_port }}"
  121. - protocol: ssl
  122. load_balancer_port: "{{ openshift_master_api_port }}"
  123. instance_protocol: ssl
  124. instance_port: "{{ openshift_master_api_port }}"
  125. ssl_certificate_id: "{{ openshift_aws_elb_cert_arn }}"
  126. name: "{{ openshift_aws_elb_master_external_name }}"
  127. # Set scheme [internal|internet-facing]
  128. scheme: internet-facing
  129. tags: "{{ openshift_aws_kube_tags }}"
  130. internal:
  131. cross_az_load_balancing: False
  132. health_check:
  133. ping_protocol: tcp
  134. ping_port: "{{ openshift_master_api_port }}"
  135. response_timeout: 5
  136. interval: 30
  137. unhealthy_threshold: 2
  138. healthy_threshold: 2
  139. idle_timeout: 400
  140. listeners:
  141. - protocol: tcp
  142. load_balancer_port: 80
  143. instance_protocol: tcp
  144. instance_port: 80
  145. - protocol: tcp
  146. load_balancer_port: "{{ openshift_master_api_port }}"
  147. instance_protocol: tcp
  148. instance_port: "{{ openshift_master_api_port }}"
  149. name: "{{ openshift_aws_elb_master_internal_name }}"
  150. # Set scheme [internal|internet-facing]
  151. scheme: internal
  152. tags: "{{ openshift_aws_kube_tags }}"
  153. infra:
  154. external:
  155. cross_az_load_balancing: False
  156. health_check:
  157. ping_protocol: tcp
  158. ping_port: 443
  159. response_timeout: 5
  160. interval: 30
  161. unhealthy_threshold: 2
  162. healthy_threshold: 2
  163. idle_timeout: 400
  164. listeners:
  165. - protocol: tcp
  166. load_balancer_port: 80
  167. instance_protocol: tcp
  168. instance_port: 80
  169. proxy_protocol: True
  170. - protocol: tcp
  171. load_balancer_port: 443
  172. instance_protocol: tcp
  173. instance_port: 443
  174. proxy_protocol: True
  175. name: "{{ openshift_aws_elb_infra_name }}"
  176. # Set scheme [internal|internet-facing]
  177. scheme: internet-facing
  178. tags: "{{ openshift_aws_kube_tags }}"
  179. openshift_aws_master_volumes:
  180. - device_name: /dev/sda1
  181. volume_size: 100
  182. volume_type: gp2
  183. delete_on_termination: False
  184. - device_name: /dev/sdb
  185. volume_size: 100
  186. volume_type: gp2
  187. delete_on_termination: False
  188. openshift_aws_node_group_config_node_volumes:
  189. - device_name: /dev/sda1
  190. volume_size: 100
  191. volume_type: gp2
  192. delete_on_termination: True
  193. - device_name: /dev/sdb
  194. volume_size: 100
  195. volume_type: gp2
  196. delete_on_termination: True
  197. # build_instance_tags is a custom filter in role lib_utils
  198. openshift_aws_node_group_config_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  199. openshift_aws_node_group_termination_policy: Default
  200. openshift_aws_node_group_replace_instances: []
  201. openshift_aws_node_group_replace_all_instances: False
  202. openshift_aws_ami_map:
  203. master: "{{ openshift_aws_ami }}"
  204. infra: "{{ openshift_aws_ami }}"
  205. compute: "{{ openshift_aws_ami }}"
  206. openshift_aws_master_group:
  207. - name: "{{ openshift_aws_clusterid }} master group"
  208. group: master
  209. node_group_config: node-config-master
  210. tags:
  211. host-type: master
  212. sub-host-type: default
  213. runtime: docker
  214. openshift_aws_node_groups:
  215. - name: "{{ openshift_aws_clusterid }} compute group"
  216. group: compute
  217. node_group_config: node-config-compute
  218. tags:
  219. host-type: node
  220. sub-host-type: compute
  221. runtime: docker
  222. - name: "{{ openshift_aws_clusterid }} infra group"
  223. group: infra
  224. node_group_config: node-config-infra
  225. tags:
  226. host-type: node
  227. sub-host-type: infra
  228. runtime: docker
  229. openshift_aws_created_asgs: []
  230. openshift_aws_current_asgs: []
  231. openshift_aws_scale_group_health_check:
  232. period: 60
  233. type: EC2
  234. # these will be used during upgrade
  235. openshift_aws_master_instance_config:
  236. instance_type: "{{ openshift_aws_master_group_instance_type | default(openshift_aws_instance_type) }}"
  237. volumes: "{{ openshift_aws_master_volumes }}"
  238. health_check: "{{ openshift_aws_scale_group_health_check }}"
  239. exact_count: "{{ openshift_aws_master_group_desired_size | default(3) }}"
  240. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  241. iam_role: "{{ openshift_aws_iam_master_role_name | default(openshift_aws_iam_role_name) }}"
  242. policy_name: "{{ openshift_aws_iam_master_role_policy_name | default(openshift_aws_iam_role_policy_name) }}"
  243. policy_json: "{{ openshift_aws_iam_master_role_policy_json | default(openshift_aws_iam_role_policy_json) }}"
  244. elbs: "{{ openshift_aws_elb_dict | json_query('master.[*][0][*].name') }}"
  245. groups:
  246. - "{{ openshift_aws_clusterid }}" # default sg
  247. - "{{ openshift_aws_clusterid }}_master" # node type sg
  248. - "{{ openshift_aws_clusterid }}_master_k8s" # node type sg k8s
  249. openshift_aws_node_group_config:
  250. # The 'compute' key is always required here.
  251. compute:
  252. instance_type: "{{ openshift_aws_compute_group_instance_type | default(openshift_aws_instance_type) }}"
  253. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  254. health_check: "{{ openshift_aws_scale_group_health_check }}"
  255. min_size: "{{ openshift_aws_compute_group_min_size | default(3) }}"
  256. max_size: "{{ openshift_aws_compute_group_max_size | default(100) }}"
  257. desired_size: "{{ openshift_aws_compute_group_desired_size | default(3) }}"
  258. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  259. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  260. iam_role: "{{ openshift_aws_iam_node_role_name | default(openshift_aws_iam_role_name) }}"
  261. policy_name: "{{ openshift_aws_iam_node_role_policy_name | default(openshift_aws_iam_role_policy_name) }}"
  262. policy_json: "{{ openshift_aws_iam_node_role_policy_json | default(openshift_aws_iam_role_policy_json) }}"
  263. # The 'infra' key is always required here.
  264. infra:
  265. instance_type: "{{ openshift_aws_infra_group_instance_type | default(openshift_aws_instance_type) }}"
  266. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  267. health_check: "{{ openshift_aws_scale_group_health_check }}"
  268. min_size: "{{ openshift_aws_infra_group_min_size | default(2) }}"
  269. max_size: "{{ openshift_aws_infra_group_max_size | default(20) }}"
  270. desired_size: "{{ openshift_aws_infra_group_desired_size | default(2) }}"
  271. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  272. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  273. iam_role: "{{ openshift_aws_iam_node_role_name | default(openshift_aws_iam_role_name) }}"
  274. policy_name: "{{ openshift_aws_iam_node_role_policy_name | default(openshift_aws_iam_role_policy_name) }}"
  275. policy_json: "{{ openshift_aws_iam_node_role_policy_json | default(openshift_aws_iam_role_policy_json) }}"
  276. elbs: "{{ openshift_aws_elb_dict | json_query('infra.[*][0][*].name') }}"
  277. # build_instance_tags is a custom filter in role lib_utils
  278. openshift_aws_kube_tags: "{{ openshift_aws_clusterid | build_instance_tags }}"
  279. openshift_aws_elb_security_groups: "{{ openshift_aws_launch_config_security_groups }}"
  280. openshift_aws_launch_config_security_groups:
  281. master:
  282. - "{{ openshift_aws_clusterid }}" # default sg
  283. - "{{ openshift_aws_clusterid }}_master" # node type sg
  284. - "{{ openshift_aws_clusterid }}_master_k8s" # node type sg k8s
  285. compute:
  286. - "{{ openshift_aws_clusterid }}" # default sg
  287. - "{{ openshift_aws_clusterid }}_compute" # node type sg
  288. - "{{ openshift_aws_clusterid }}_compute_k8s" # node type sg k8s
  289. infra:
  290. - "{{ openshift_aws_clusterid }}" # default sg
  291. - "{{ openshift_aws_clusterid }}_infra" # node type sg
  292. - "{{ openshift_aws_clusterid }}_infra_k8s" # node type sg k8s
  293. openshift_aws_security_groups_tags: "{{ openshift_aws_kube_tags }}"
  294. openshift_aws_node_security_groups:
  295. default:
  296. name: "{{ openshift_aws_clusterid }}"
  297. desc: "{{ openshift_aws_clusterid }} default"
  298. rules:
  299. - proto: tcp
  300. from_port: 22
  301. to_port: 22
  302. cidr_ip: 0.0.0.0/0
  303. - proto: all
  304. from_port: 1
  305. to_port: 65535
  306. group_name: "{{ openshift_aws_clusterid }}"
  307. master:
  308. name: "{{ openshift_aws_clusterid }}_master"
  309. desc: "{{ openshift_aws_clusterid }} master instances"
  310. rules:
  311. - proto: tcp
  312. from_port: 80
  313. to_port: 80
  314. cidr_ip: 0.0.0.0/0
  315. - proto: tcp
  316. from_port: "{{ openshift_master_api_port }}"
  317. to_port: "{{ openshift_master_api_port }}"
  318. cidr_ip: 0.0.0.0/0
  319. compute:
  320. name: "{{ openshift_aws_clusterid }}_compute"
  321. desc: "{{ openshift_aws_clusterid }} compute node instances"
  322. infra:
  323. name: "{{ openshift_aws_clusterid }}_infra"
  324. desc: "{{ openshift_aws_clusterid }} infra node instances"
  325. rules:
  326. - proto: tcp
  327. from_port: 80
  328. to_port: 80
  329. cidr_ip: 0.0.0.0/0
  330. - proto: tcp
  331. from_port: "{{ openshift_master_api_port }}"
  332. to_port: "{{ openshift_master_api_port }}"
  333. cidr_ip: 0.0.0.0/0
  334. - proto: tcp
  335. from_port: 30000
  336. to_port: 32000
  337. cidr_ip: 0.0.0.0/0
  338. etcd:
  339. name: "{{ openshift_aws_clusterid }}_etcd"
  340. desc: "{{ openshift_aws_clusterid }} etcd instances"
  341. openshift_aws_node_run_bootstrap_startup: True
  342. openshift_aws_node_user_data: ''
  343. openshift_aws_node_config_namespace: openshift-node
  344. openshift_aws_masters_groups: masters,etcd,nodes
  345. # By default, don't delete things like the shared IAM instance
  346. # profile and uploaded ssh keys
  347. openshift_aws_enable_uninstall_shared_objects: False
  348. # S3 bucket names are global by default and can take minutes/hours for the
  349. # name to become available for re-use (assuming someone doesn't take the
  350. # name in the meantime). Default to just emptying the contents of the S3
  351. # bucket if we've been asked to create the bucket during provisioning.
  352. openshift_aws_really_delete_s3_bucket: False