-
Notifications
You must be signed in to change notification settings - Fork 6
/
site.yaml
58 lines (54 loc) · 1.21 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
---
- name: ansible ssh settings
hosts: cluster
serial: 1
roles:
- role: common/target/default
- role: ssh
### root user ssh key trade ###
# - role: common/target/root
# - role: ssh
- name: custom settings
hosts: cluster
gather_facts: no
become: yes
roles:
- role: custom/motd
- role: common/target/default
# - role: custom/vim/vim-plugins - need fix
- role: custom/vim/vim-custom
- role: custom/git
- role: custom/alias
- role: common/target/root
# - role: custom/vim/vim-plugins - need fix
- role: custom/vim/vim-custom
- role: custom/git
- role: custom/alias
- name: kubernetes install
hosts: cluster
gather_facts: no
become: yes
roles:
- role: runtime
- role: kubernetes
- name: utils, components install
hosts: cluster
gather_facts: no
become: yes
roles:
# - role: utils/k9s
# - role: utils/stern
# - role: utils/dashboard
# - role: utils/builder
# - role: utils/skopeo
# - role: utils/compose
- role: registry
- role: helm
- role: metallb
- role: ingress-controller
- role: cicd
tasks:
- when: alert is defined and alert != ''
name: alert
debug:
msg: "{{ alert }}"