-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.yml
executable file
·56 lines (49 loc) · 1.31 KB
/
install.yml
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
# Deploy kubernetes services
- hosts: localhost
become: false
environment:
K8S_AUTH_KUBECONFIG: "{{ K8S_AUTH_KUBECONFIG }}"
vars_files:
- ./inventory/group_vars/all.yml
- ./inventory/group_vars/services.yml
roles:
- name: ./roles/services/utils/prerequisites
tags:
- core
- additional
- prerequisites
- name: ./roles/services/core/traefik
tags:
- core
- traefik-core
- name: ./roles/services/core/longhorn
tags:
- core
- longhorn-core
- name: ./roles/services/core/cert-manager
tags:
- core
- cert-manager-core
- name: ./roles/services/core/vault
tags:
- core
- vault-core
- name: ./roles/services/core/argo-cd
tags:
- core
- argo-cd-core
- name: ./roles/services/utils/env
tags:
- env
- always
when: >
'core' not in ansible_run_tags and
'traefik-core' not in ansible_run_tags and
'longhorn-core' not in ansible_run_tags and
'cert-manager-core' not in ansible_run_tags and
'vault-core' not in ansible_run_tags and
'argo-cd-core' not in ansible_run_tags and
'sso-core' not in ansible_run_tags
- name: ./roles/services/core/sso
tags:
- sso-core