summaryrefslogtreecommitdiffstats
path: root/playbooks/provisioning/openstack/provision-openstack.yml
blob: a2cf7b110486f02d1555b6c299e00a2278c1ce1d (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
---
- hosts: localhost
  gather_facts: True
  become: False
  pre_tasks:
  - include: pre_tasks.yml
  roles:
  - role: openstack-stack
    stack_name: "{{ env_id }}.{{ public_dns_domain }}"
    dns_domain: "{{ public_dns_domain }}"
    dns_nameservers: "{{ public_dns_nameservers }}"
    subnet_prefix: "{{ openstack_subnet_prefix }}"
    ssh_public_key: "{{ openstack_ssh_public_key }}"
    openstack_image: "{{ openstack_default_image_name }}"
    lb_flavor: "{{ openstack_default_flavor | default('m1.small') }}"
    etcd_flavor: "{{ openstack_default_flavor | default('m1.small') }}"
    master_flavor: "{{ openstack_default_flavor | default('m1.medium') }}"
    node_flavor: "{{ openstack_default_flavor | default('m1.medium') }}"
    infra_flavor: "{{ openstack_default_flavor | default('m1.medium') }}"
    dns_flavor: "{{ openstack_default_flavor | default('m1.small') }}"
    external_network: "{{ openstack_external_network_name }}"
    num_etcd: "{{ openstack_num_etcd | default(0) }}"
    num_masters: "{{ openstack_num_masters }}"
    num_nodes: "{{ openstack_num_nodes }}"
    num_infra: "{{ openstack_num_infra }}"
    num_dns: "{{ openstack_num_dns | default(1) }}"
    master_volume_size: "{{ docker_volume_size }}"
    app_volume_size: "{{ docker_volume_size }}"
    infra_volume_size: "{{ docker_volume_size }}"


- name: Refresh Server inventory
  hosts: localhost
  connection: local
  become: False
  gather_facts: False
  tasks:
  - meta: refresh_inventory

- hosts: cluster_hosts
  gather_facts: True
  tasks:
  - name: Debug hostvar
    debug:
      msg: "{{ hostvars[inventory_hostname] }}"
      verbosity: 2
  - name: waiting for server to come back
    local_action: wait_for host={{ hostvars[inventory_hostname]['ansible_ssh_host'] }} port=22 delay=30 timeout=300
    become: false

- include: post-provision-openstack.yml