main.yml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. ---
  2. openshift_aws_create_s3: True
  3. openshift_aws_create_iam_cert: True
  4. openshift_aws_create_security_groups: True
  5. openshift_aws_create_launch_config: True
  6. openshift_aws_create_scale_group: True
  7. openshift_aws_node_group_type: master
  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_kubernetes_cluster_status: "{{ 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_scale_group_name: "{{ openshift_aws_clusterid }} openshift {{ openshift_aws_node_group_type }}"
  18. openshift_aws_iam_kms_alias: "alias/{{ openshift_aws_clusterid }}_kms"
  19. openshift_aws_ami: ''
  20. openshift_aws_ami_copy_wait: False
  21. openshift_aws_ami_encrypt: False
  22. openshift_aws_ami_copy_src_region: "{{ openshift_aws_region }}"
  23. openshift_aws_ami_name: openshift-gi
  24. openshift_aws_base_ami_name: ami_base
  25. openshift_aws_launch_config_bootstrap_token: ''
  26. openshift_aws_launch_config_name: "{{ openshift_aws_clusterid }}-{{ openshift_aws_node_group_type }}-{{ ansible_date_time.epoch }}"
  27. openshift_aws_users: []
  28. openshift_aws_ami_tags:
  29. bootstrap: "true"
  30. openshift-created: "true"
  31. clusterid: "{{ openshift_aws_clusterid }}"
  32. openshift_aws_s3_mode: create
  33. openshift_aws_s3_bucket_name: "{{ openshift_aws_clusterid }}-docker-registry"
  34. openshift_aws_elb_health_check:
  35. ping_protocol: tcp
  36. ping_port: 443
  37. response_timeout: 5
  38. interval: 30
  39. unhealthy_threshold: 2
  40. healthy_threshold: 2
  41. openshift_aws_elb_name: "{{ openshift_aws_clusterid }}-{{ openshift_aws_node_group_type }}"
  42. openshift_aws_elb_idle_timout: 400
  43. openshift_aws_elb_scheme: internet-facing
  44. openshift_aws_elb_cert_arn: ''
  45. openshift_aws_elb_listeners:
  46. master:
  47. external:
  48. - protocol: tcp
  49. load_balancer_port: 80
  50. instance_protocol: ssl
  51. instance_port: 443
  52. - protocol: ssl
  53. load_balancer_port: 443
  54. instance_protocol: ssl
  55. instance_port: 443
  56. # ssl certificate required for https or ssl
  57. ssl_certificate_id: "{{ openshift_aws_elb_cert_arn }}"
  58. internal:
  59. - protocol: tcp
  60. load_balancer_port: 80
  61. instance_protocol: tcp
  62. instance_port: 80
  63. - protocol: tcp
  64. load_balancer_port: 443
  65. instance_protocol: tcp
  66. instance_port: 443
  67. openshift_aws_node_group_config_master_volumes:
  68. - device_name: /dev/sdb
  69. volume_size: 100
  70. device_type: gp2
  71. delete_on_termination: False
  72. openshift_aws_node_group_config_node_volumes:
  73. - device_name: /dev/sdb
  74. volume_size: 100
  75. device_type: gp2
  76. delete_on_termination: True
  77. openshift_aws_node_group_config_tags: "{{ openshift_aws_clusterid | build_instance_tags(openshift_aws_kubernetes_cluster_status) }}"
  78. openshift_aws_node_group_termination_policy: Default
  79. openshift_aws_node_group_replace_instances: []
  80. openshift_aws_node_group_replace_all_instances: False
  81. openshift_aws_node_group_config_extra_labels: {}
  82. openshift_aws_node_group_config:
  83. tags: "{{ openshift_aws_node_group_config_tags }}"
  84. master:
  85. instance_type: m4.xlarge
  86. ami: "{{ openshift_aws_ami }}"
  87. volumes: "{{ openshift_aws_node_group_config_master_volumes }}"
  88. health_check:
  89. period: 60
  90. type: EC2
  91. min_size: 3
  92. max_size: 3
  93. desired_size: 3
  94. tags:
  95. host-type: master
  96. sub-host-type: default
  97. labels:
  98. type: master
  99. wait_for_instances: True
  100. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  101. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  102. compute:
  103. instance_type: m4.xlarge
  104. ami: "{{ openshift_aws_ami }}"
  105. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  106. health_check:
  107. period: 60
  108. type: EC2
  109. min_size: 3
  110. max_size: 100
  111. desired_size: 3
  112. tags:
  113. host-type: node
  114. sub-host-type: compute
  115. labels:
  116. type: compute
  117. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  118. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  119. infra:
  120. instance_type: m4.xlarge
  121. ami: "{{ openshift_aws_ami }}"
  122. volumes: "{{ openshift_aws_node_group_config_node_volumes }}"
  123. health_check:
  124. period: 60
  125. type: EC2
  126. min_size: 2
  127. max_size: 20
  128. desired_size: 2
  129. tags:
  130. host-type: node
  131. sub-host-type: infra
  132. labels:
  133. type: infra
  134. termination_policy: "{{ openshift_aws_node_group_termination_policy }}"
  135. replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}"
  136. openshift_aws_elb_security_groups:
  137. - "{{ openshift_aws_clusterid }}"
  138. - "{{ openshift_aws_clusterid }}_{{ openshift_aws_node_group_type }}"
  139. openshift_aws_elb_instance_filter:
  140. "tag:clusterid": "{{ openshift_aws_clusterid }}"
  141. "tag:host-type": "{{ openshift_aws_node_group_type }}"
  142. instance-state-name: running
  143. openshift_aws_launch_config_security_groups:
  144. - "{{ openshift_aws_clusterid }}" # default sg
  145. - "{{ openshift_aws_clusterid }}_{{ openshift_aws_node_group_type }}" # node type sg
  146. - "{{ openshift_aws_clusterid }}_{{ openshift_aws_node_group_type }}_k8s" # node type sg k8s
  147. openshift_aws_node_security_groups:
  148. default:
  149. name: "{{ openshift_aws_clusterid }}"
  150. desc: "{{ openshift_aws_clusterid }} default"
  151. rules:
  152. - proto: tcp
  153. from_port: 22
  154. to_port: 22
  155. cidr_ip: 0.0.0.0/0
  156. - proto: all
  157. from_port: all
  158. to_port: all
  159. group_name: "{{ openshift_aws_clusterid }}"
  160. master:
  161. name: "{{ openshift_aws_clusterid }}_master"
  162. desc: "{{ openshift_aws_clusterid }} master instances"
  163. rules:
  164. - proto: tcp
  165. from_port: 80
  166. to_port: 80
  167. cidr_ip: 0.0.0.0/0
  168. - proto: tcp
  169. from_port: 443
  170. to_port: 443
  171. cidr_ip: 0.0.0.0/0
  172. compute:
  173. name: "{{ openshift_aws_clusterid }}_compute"
  174. desc: "{{ openshift_aws_clusterid }} compute node instances"
  175. infra:
  176. name: "{{ openshift_aws_clusterid }}_infra"
  177. desc: "{{ openshift_aws_clusterid }} infra node instances"
  178. rules:
  179. - proto: tcp
  180. from_port: 80
  181. to_port: 80
  182. cidr_ip: 0.0.0.0/0
  183. - proto: tcp
  184. from_port: 443
  185. to_port: 443
  186. cidr_ip: 0.0.0.0/0
  187. - proto: tcp
  188. from_port: 30000
  189. to_port: 32000
  190. cidr_ip: 0.0.0.0/0
  191. etcd:
  192. name: "{{ openshift_aws_clusterid }}_etcd"
  193. desc: "{{ openshift_aws_clusterid }} etcd instances"
  194. openshift_aws_vpc_tags:
  195. Name: "{{ openshift_aws_vpc_name }}"
  196. openshift_aws_subnet_name: us-east-1c
  197. openshift_aws_vpc:
  198. name: "{{ openshift_aws_vpc_name }}"
  199. cidr: 172.31.0.0/16
  200. subnets:
  201. us-east-1:
  202. - cidr: 172.31.48.0/20
  203. az: "us-east-1c"
  204. - cidr: 172.31.32.0/20
  205. az: "us-east-1e"
  206. - cidr: 172.31.16.0/20
  207. az: "us-east-1a"
  208. openshift_aws_node_run_bootstrap_startup: True
  209. openshift_aws_node_user_data: ''
  210. openshift_aws_node_config_namespace: openshift-node