Ansible provisionning (#217)

Ansible provisionning contrib
This commit is contained in:
Vincent RABAH
2019-04-26 21:10:27 +02:00
committed by Hussein Galal
commit 85b01829fb
11 changed files with 230 additions and 0 deletions

21
site.yml Normal file
View File

@@ -0,0 +1,21 @@
---
- hosts: k3s-cluster
gather_facts: yes
become: yes
roles:
- { role: download }
- { role: raspbian }
- hosts: master
# gather_facts: yes
become: yes
roles:
- { role: k3s/master }
- hosts: node
# gather_facts: yes
become: yes
roles:
- { role: k3s/node }