-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsite.yaml
90 lines (76 loc) · 1.48 KB
/
site.yaml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
- name: Test distribution
hosts:
- opendc
tasks:
- assert:
that: ansible_os_family == "RedHat" and ansible_distribution_major_version == "7"
tags: confirm_os
- name: Common components setup
hosts:
- opendc
become: yes
vars_files:
- "{{ inventory_dir }}/provider.yaml"
roles:
- common
tags: common_setup
- name: opendc-ca certificate authority setup
hosts:
- opendc-ca
become: yes
vars_files:
- "{{ inventory_dir }}/provider.yaml"
roles:
- opendc-ca
tags:
- opendc_ca_setup
- opendc_security
- name: Etcd setup
hosts:
- etcd
become: yes
vars_files:
- "{{ inventory_dir }}/provider.yaml"
roles:
- etcd
tags: etcd_setup
- name: Flannel setup
hosts:
- opendc-masters
- opendc-nodes
become: yes
vars_files:
- "{{ inventory_dir }}/provider.yaml"
roles:
- flannel
tags: flannel_setup
- name: Docker setup
hosts:
- opendc-masters
- opendc-nodes
become: yes
vars_files:
- "{{ inventory_dir }}/provider.yaml"
roles:
- docker
tags: docker_setup
- name: Docker registry mirror setup
hosts:
- docker-registry-mirror
become: yes
vars_files:
- "{{ inventory_dir }}/provider.yaml"
roles:
- registry-mirror
tags: docker_registry_mirror_setup
- name: Kubernetes setup
hosts:
- opendc-masters
- opendc-nodes
become: yes
vars_files:
- "{{ inventory_dir }}/provider.yaml"
roles:
- kubernetes
tags: k8s_setup