summaryrefslogtreecommitdiffstats
path: root/playbooks/gce/openshift-cluster/launch.yml
blob: 94e57fe4ebccfeb1784f241b5c1e3b701479e55a (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
49
50
51
52
53
54
55
56
57
58
59
60
---
- name: Launch instance(s)
  hosts: localhost
  connection: local
  gather_facts: no
  vars_files:
  - vars.yml
  tasks:
  - fail: msg="Deployment type not supported for gce provider yet"
    when: deployment_type == 'enterprise'

  - include: ../../common/openshift-cluster/set_master_launch_facts_tasks.yml
  - include: tasks/launch_instances.yml
    vars:
      instances: "{{ master_names }}"
      cluster: "{{ cluster_id }}"
      type: "{{ k8s_type }}"
      g_sub_host_type: "default"

  - include: ../../common/openshift-cluster/set_node_launch_facts_tasks.yml
    vars:
      type: "compute"
      count: "{{ num_nodes }}"
  - include: tasks/launch_instances.yml
    vars:
      instances: "{{ node_names }}"
      cluster: "{{ cluster_id }}"
      type: "{{ k8s_type }}"
      g_sub_host_type: "{{ sub_host_type }}"

#  - include: ../../common/openshift-cluster/set_infra_launch_facts_tasks.yml
#    vars:
#      type: "infra"
#      count: "{{ num_infra }}"
#  - include: tasks/launch_instances.yml
#    vars:
#      instances: "{{ infra_names }}"
#      cluster: "{{ cluster_id }}"
#      type: "{{ k8s_type }}"
#      g_sub_host_type: "{{ sub_host_type }}"
#
#  - set_fact:
#      a_infra: "{{ infra_names[0] }}"
#  - add_host: name={{ a_infra }} groups=service_master
#
- include: update.yml
#
#- name: Deploy OpenShift Services
#  hosts: service_master
#  connection: ssh
#  gather_facts: yes
#  roles:
#  - openshift_registry
#  - openshift_router
#
#- include: ../../common/openshift-cluster/create_services.yml
#  vars:
#     g_svc_master: "{{ service_master }}"

- include: list.yml