Created
September 17, 2021 22:11
-
-
Save peternied/e0f9eca659a4af460ae8119adf9e1c69 to your computer and use it in GitHub Desktop.
Continuous integration CDN organization on ci.opensearch.org
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
skinparam backgroundColor lightgrey | |
title | |
Continuous Integration Artifact Access | |
ci.opensearch.org | |
endtitle | |
cloud "ci.opensearch.org" as cdn { | |
[./CI/1/*] as c1link | |
[./CI/2/*] as c2link | |
} | |
cloud "CI 1 Artifacts" as ci1 { | |
(S3) | |
} | |
cloud "CI 2 Artifacts" as ci2 { | |
(S3 ) | |
} | |
:User 1: -down-> c1link: GET .../CI/2123/logs/build | |
c1link -down-> ci1: Lookup ./logs/build | |
:User 2: -down-> c2link: GET .../CI/8781/artifact | |
c2link -down-> ci2: Lookup ./artifact | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment