summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws/tasks/provision.yml
blob: 786a2e4cfc2d7f06375f9d589f9fb9c2890cb598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
- when: openshift_aws_create_iam_cert | bool
  name: create the iam_cert for elb certificate
  include_tasks: iam_cert.yml

- when: openshift_aws_create_s3 | bool
  name: create s3 bucket for registry
  include_tasks: s3.yml

- include_tasks: vpc_and_subnet_id.yml

- name: create elbs
  include_tasks: elb.yml
  with_dict: "{{ openshift_aws_elb_dict }}"
  vars:
    l_elb_security_groups: "{{ openshift_aws_elb_security_groups }}"
    l_openshift_aws_elb_name_dict: "{{ openshift_aws_elb_name_dict }}"
  loop_control:
    loop_var: l_elb_dict_item

- name: include scale group creation for master
  include_tasks: build_node_group.yml
  with_items: "{{ openshift_aws_master_group }}"
  vars:
    l_node_group_config: "{{ openshift_aws_master_group_config }}"
  loop_control:
    loop_var: openshift_aws_node_group

- name: fetch newly created instances
  ec2_instance_facts:
    region: "{{ openshift_aws_region }}"
    filters:
      "tag:clusterid": "{{ openshift_aws_clusterid }}"
      "tag:host-type": "master"
      instance-state-name: running
  register: instancesout
  retries: 20
  delay: 3
  until: instancesout.instances|length > 0

- name: wait for ssh to become available
  wait_for:
    port: 22
    host: "{{ item.public_ip_address }}"
    timeout: 300
    search_regex: OpenSSH
  with_items: "{{ instancesout.instances }}"
  when: openshift_aws_wait_for_ssh | bool