-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yaml
44 lines (33 loc) · 776 Bytes
/
main.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
---
- name: Run on Local
hosts: localhost
connection: local
become: false
gather_facts: False
vars_files:
- vars/main.yaml
roles:
- role: setup-k8s-cluster
when: command == "start"
- role: delete-k8s-cluster
when: command == "delete"
- role: helm
when: command == "start"
- role: prometheus
when: command == "start"
- role: grafana
when: command == "start"
- role: logforward
when: command == "start"
- role: helper
when: command == "start"
- role: jenkins
when: command == "start"
# - role: ingress
# when: command == "start"
# - role: k8s-dashboard
# when: command == "start"
- role: metric-server
when: command == "start"
- role: cluster-autoscaling
when: command == "start"