-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjustupdate-whydah.yml
80 lines (74 loc) · 1.47 KB
/
justupdate-whydah.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
# This playbook updates whydah to a given version when it has already been deployed
- name: Update Whydah UserIdentityBackend
hosts: Whydah_UserIdentityBackend
sudo: true
roles:
- update_app
tags:
uib
vars:
username: UserIdentityBackend
app_name: UserIdentityBackend
vars_files:
- vars/uib
- name: Update Whydah SecurityTokenService
hosts: Whydah_SecurityTokenService
sudo: true
roles:
- update_app
tags:
sts
vars:
username: SecurityTokenService
app_name: SecurityTokenService
vars_files:
- vars/securityTokenService
- name: Update Whydah SSOLoginWebApp
hosts: Whydah_SSOLoginWebApp
sudo: true
roles:
- update_app
tags:
sso
vars:
username: SSOLoginWebApp
app_name: SSOLoginWebApp
vars_files:
- vars/ssoLogin
- name: Update Whydah UserAdminWebApp
hosts: Whydah_UserAdminWebApp
sudo: true
roles:
- update_app
tags:
uawa
vars:
username: UserAdminWebApp
app_name: UserAdminWebApp
vars_files:
- vars/userAdministration
- name: Update Whydah UserAdminService
hosts: Whydah_UserAdminService
sudo: true
roles:
- update_app
tags:
uas
vars:
username: UserAdminService
app_name: UserAdminService
vars_files:
- vars/userAdminService
- name: Update Whydah TestWebApp
hosts: Whydah_TestWebApp
sudo: true
roles:
- update_app
tags:
testapp
vars:
username: TestWebApp
app_name: TestWebApp
vars_files:
- vars/testwebapp