infra/provision.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

2018-10-02 09:12:23 +03:00
---
- name: check input parameters
hosts: localhost
gather_facts: false
tags: always
tasks:
- fail: msg="env_name should be set"
when: env_name is not defined
- fail: msg="stack_name should be set"
when: stack_name is not defined
- name: provisioning PVE nodes
hosts: localhost
gather_facts: false
roles:
- {role: prepare-config, tags: [ ]}
- {role: pve, tags: [ ]}
- {role: lxc, tags: [ ]}
- {role: inventory, bootstrap: yes, tags: [ ]}
tags: [ provision ]
- name: prepare nodes
hosts: stack
gather_facts: false
2018-11-01 22:39:50 +03:00
# cannot use free strategy due usage of add_host after
# NICs reconfiguration
#strategy: free
2018-10-02 09:12:23 +03:00
pre_tasks:
- meta: end_play
when: destroy_all is defined and destroy_all
- name: install prereqs
raw: 'apt-get update && apt-get install -qy python2.7\(distutils\)'
when: destroy_all is not defined or not destroy_all
2018-10-02 09:12:23 +03:00
- name: gather facts
setup:
when: destroy_all is not defined or not destroy_all
roles:
- {role: prepare-config, tags: [ ]}
- {role: common, tags: [ ]}
tags: [ prepare ]
2018-11-01 21:59:05 +03:00
- name: put ssh host keys to all nodes
hosts: stack
gather_facts: false
strategy: free
tasks:
- name: put keys to known hosts
copy:
src: ".tmp/{{ stack_name }}.known_hosts"
2018-11-01 22:39:50 +03:00
dest: "/etc/openssh/ssh_known_hosts"
2018-11-01 21:59:05 +03:00
owner: root
group: root
mode: 0644
tags: [ prepare ]