blob: 18290ae49b61697cd98107370a39b4bdd03392aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
---
- 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:
- include_role:
name: certificates
tasks_from: upload_root_ca.yml
vars:
certificates_local_dir: certs
|