add bootstrap playbook

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-03-21 12:00:53 +01:00
parent beb8fb4ac6
commit 5333f49a7f
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 21 additions and 0 deletions

21
ansible/bootstrap.yml Normal file
View File

@ -0,0 +1,21 @@
---
#
# This playbook configures most basic things about the hosts:
#
# - Admin and Additional users
# - Disables root login
# - Installs Common packages
# - Starts Consul client agent
#
# This is run on every newly provisioned host.
#
- name: Bootstrap Python support for Ansible
gather_facts: False
hosts: all
roles:
- infra-role-bootstrap/raw
- name: Bootstrap admin users and Consul
hosts: all
roles:
- infra-role-bootstrap