blob: 382ffd539d76f5d43d2543bc517fc653c77deb0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
- name: Perform common environment setup for nodes
hosts: infrastructure, kubernetes
roles:
- package-repository
- role: firewall
- name: Setup infrastructure servers
hosts: infrastructure
roles:
- certificates
- docker
- dns
- vncserver
- nginx
- nexus
- name: Setup base for Kubernetes nodes
hosts: kubernetes
roles:
- docker
tasks:
- import_tasks: roles/certificates/tasks/upload_root_ca.yml
|