download_application_from_tag.yml
1.78 KB
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
---
- hosts: tag_develop
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/develop/application
version: develop
- hosts: tag_dhipaya.prd
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/dhipaya.prd/application
version: dhipaya.prd
- hosts: tag_dhipaya.dev
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/dhipaya.dev/application
version: dhipaya.dev
- hosts: tag_deves.prd.3.0.5
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/deves.prd.3.0.5/application
version: deves.prd.3.0.5
- hosts: tag_dma.3.0.6
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/dma.3.0.6/application
version: dma.3.0.6
- hosts: tag_dma.3.1.0
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/dma.3.1.0/application
version: dma.3.1.0
- hosts: tag_dma.3.1.2
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/dma.3.1.2/application
version: dma.3.1.2
- hosts: tag_dma.3.1.4
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/dma.3.1.4/application
version: dma.3.1.4
- hosts: tag_dma.3.4.0
become: true
tasks:
- git:
repo: 'https://ansible@example.com/ansible/application.git'
dest: /tmp/dma/3.4.0
version: dma.3.4.0