This commit is contained in:
2020-10-03 00:59:13 +02:00
commit 560c18ccfd
7 changed files with 157 additions and 0 deletions

21
update.yml Normal file
View File

@@ -0,0 +1,21 @@
---
- name: Apply common configuration to all nodes
hosts: all
become: true
roles:
- common
- name: Configure and deploy Kubernetes master
hosts: master
become: true
roles:
- master
- name: Join workers to Kubernetes cluster
hosts: worker
become: true
roles:
- worker