-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfrastructure.puml
52 lines (39 loc) · 880 Bytes
/
infrastructure.puml
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
@startuml
package "Development" {
HTT2P - [First Component]
[Another Component]
}
package "Operations" {
FTP - [Second Component]
[First Component] --> FTP
}
node "Ansible Repository" as as {
component "Ansible Galaxy" <<web-app>> as ag
artifact "Ansible Role" as ar
artifact "Ansible Collection" as ac
artifact "Ansible Playbook" as ap
ag <-l-> HTTP
ag <-r-> GIT
ag .d.> ar
ag ..> ac
ag ..> ap
ac "1" *-> "0..*" ar: Contains\nroles
ap "1" *-> "0..*" ar: Contains\nroles
ap "1" *-> "0..*" ac: Contains\ncollections
}
node "Ansible Controller" <<workstation>> as am {
component "OpenSSH" as oa
component "Ansible CLI" as ab
}
cloud "Ansible Managed Nodes" as amn {
}
as ...> am: Download roles,\nplaybooks,\ncollections.
as <... am: Upload roles
am -(0-> amn: SSH
frame "yavin" as yavin {
component "Git"
component "Git"
component "GitLab"
component "Docker"
}
@enduml