-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8a1fcf
commit 436a00c
Showing
4 changed files
with
202 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
@startuml | ||
|
||
!includeurl https://raw.githubusercontent.com/michiel/plantuml-kubernetes-sprites/master/resource/k8s-sprites-unlabeled-25pct.iuml | ||
|
||
!define ICONURL https://raw.githubusercontent.com/tupadr3/plantuml-icon-font-sprites/v2.0.0 | ||
!includeurl ICONURL/common.puml | ||
!includeurl ICONURL/devicons/docker.puml | ||
!includeurl ICONURL/devicons/git.puml | ||
!includeurl ICONURL/font-awesome-5/jenkins.puml | ||
!includeurl ICONURL/font-awesome-5/sync.puml | ||
|
||
!define CLOUDOGUURL https://raw.githubusercontent.com/cloudogu/plantuml-cloudogu-sprites/master | ||
!includeurl CLOUDOGUURL/tools/k8s.puml | ||
|
||
!define CLOUDOGU_BLUE #23a3dd | ||
!define COLOR_ABOVE_TRANSPARENT_BACKGROUND #777 | ||
|
||
skinparam backgroundcolor TRANSPARENT | ||
skinparam DefaultFontColor COLOR_ABOVE_TRANSPARENT_BACKGROUND | ||
skinparam sequenceArrowColor COLOR_ABOVE_TRANSPARENT_BACKGROUND | ||
|
||
skinparam actorStyle awesome | ||
|
||
together { | ||
actor Developer as user | ||
rectangle "<$git>\nApp Repo" as appRepo | ||
rectangle "<$git>\nConfig Repo" as configRepo | ||
rectangle "<$jenkins>\nCI Server" as ciServer | ||
} | ||
|
||
rectangle "<$k8s>\nK8s Cluster" as k8s { | ||
rectangle "<$sync>\nGitOps\noperator" as operator | ||
} | ||
rectangle "<$docker>\nOCI Registry" as registry | ||
|
||
user -[#red]> appRepo : push\ncode\n<color:red>+chart | ||
user -[#red]> configRepo : <color:red>push values.yaml per env | ||
appRepo -[hidden]> configRepo | ||
appRepo <-- ciServer : pull | ||
ciServer -> registry : push\nimage | ||
configRepo <- ciServer : push new\nimage version | ||
k8s -[#red]> appRepo : <color:red>pull\n<color:red>chart | ||
k8s --> registry : pull\nimage | ||
k8s -[#red]> configRepo : <color:red>pull\n<color:red>values.yaml | ||
k8s -> k8s : deploy | ||
|
||
|
||
skinparam actor { | ||
BackgroundColor CLOUDOGU_BLUE | ||
BorderColor #16688d | ||
} | ||
|
||
skinparam rectangle { | ||
BackgroundColor CLOUDOGU_BLUE | ||
BorderColor #16688d | ||
FontColor WHITE | ||
backgroundColor<<node>> WHITE | ||
FontColor<<node>> CLOUDOGU_BLUE | ||
} | ||
|
||
@enduml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
@startuml | ||
|
||
!includeurl https://raw.githubusercontent.com/michiel/plantuml-kubernetes-sprites/master/resource/k8s-sprites-unlabeled-25pct.iuml | ||
|
||
!define ICONURL https://raw.githubusercontent.com/tupadr3/plantuml-icon-font-sprites/v2.4.0 | ||
!includeurl ICONURL/common.puml | ||
!includeurl ICONURL/devicons/docker.puml | ||
!includeurl ICONURL/devicons/git.puml | ||
!includeurl ICONURL/font-awesome-5/jenkins.puml | ||
!includeurl ICONURL/font-awesome-5/sync.puml | ||
!includeurl ICONURL/font-awesome-5/dharmachakra.puml | ||
|
||
!define CLOUDOGUURL https://raw.githubusercontent.com/cloudogu/plantuml-cloudogu-sprites/master | ||
!includeurl CLOUDOGUURL/tools/k8s.puml | ||
|
||
!define CLOUDOGU_BLUE #23a3dd | ||
!define COLOR_ABOVE_TRANSPARENT_BACKGROUND #777 | ||
|
||
skinparam backgroundcolor TRANSPARENT | ||
skinparam DefaultFontColor COLOR_ABOVE_TRANSPARENT_BACKGROUND | ||
skinparam sequenceArrowColor COLOR_ABOVE_TRANSPARENT_BACKGROUND | ||
|
||
skinparam actorStyle awesome | ||
|
||
together { | ||
actor Developer as user | ||
rectangle "<$git>\nApp Repo" as appRepo | ||
rectangle "<$git>\nConfig Repo" as configRepo | ||
rectangle "<$jenkins>\nCI Server" as ciServer | ||
} | ||
|
||
rectangle "<$k8s>\nK8s Cluster" as k8s { | ||
rectangle "<$sync>\nGitOps\noperator" as operator | ||
} | ||
rectangle "<$dharmachakra>\nHelm Registry" as helmRegistry | ||
rectangle "<$docker>\nOCI Registry" as ociRegistry | ||
|
||
user -[#red]> appRepo : push\ncode\n<color:red>+chart | ||
user -[#red]> configRepo : <color:red>push values.yaml per env | ||
appRepo -[hidden]> configRepo | ||
appRepo <-- ciServer : pull | ||
ciServer -[#red]> helmRegistry : <color:red>push\n<color:red>chart | ||
ciServer --> ociRegistry : push\nimage | ||
configRepo <- ciServer : push new\nimage version | ||
k8s -[#red]> helmRegistry : <color:red>pull\n<color:red>chart | ||
k8s -> ociRegistry : pull\nimage | ||
k8s -[#red]> configRepo : <color:red>pull\n<color:red>values.yaml | ||
|
||
k8s -> k8s : deploy | ||
|
||
|
||
skinparam actor { | ||
BackgroundColor CLOUDOGU_BLUE | ||
BorderColor #16688d | ||
} | ||
|
||
skinparam rectangle { | ||
BackgroundColor CLOUDOGU_BLUE | ||
BorderColor #16688d | ||
FontColor WHITE | ||
backgroundColor<<node>> WHITE | ||
FontColor<<node>> CLOUDOGU_BLUE | ||
} | ||
|
||
@enduml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
@startuml | ||
|
||
!includeurl https://raw.githubusercontent.com/michiel/plantuml-kubernetes-sprites/master/resource/k8s-sprites-unlabeled-25pct.iuml | ||
|
||
!define ICONURL https://raw.githubusercontent.com/tupadr3/plantuml-icon-font-sprites/v2.0.0 | ||
!includeurl ICONURL/common.puml | ||
!includeurl ICONURL/devicons/docker.puml | ||
!includeurl ICONURL/devicons/git.puml | ||
!includeurl ICONURL/font-awesome-5/jenkins.puml | ||
!includeurl ICONURL/font-awesome-5/sync.puml | ||
|
||
!define CLOUDOGUURL https://raw.githubusercontent.com/cloudogu/plantuml-cloudogu-sprites/master | ||
!includeurl CLOUDOGUURL/tools/k8s.puml | ||
|
||
!define CLOUDOGU_BLUE #23a3dd | ||
!define COLOR_ABOVE_TRANSPARENT_BACKGROUND #777 | ||
|
||
skinparam backgroundcolor TRANSPARENT | ||
skinparam DefaultFontColor COLOR_ABOVE_TRANSPARENT_BACKGROUND | ||
skinparam sequenceArrowColor COLOR_ABOVE_TRANSPARENT_BACKGROUND | ||
|
||
skinparam actorStyle awesome | ||
|
||
together { | ||
actor Developer as user | ||
rectangle "<$git>\nApp Repo" as appRepo | ||
rectangle "<$git>\nConfig Repo" as configRepo | ||
rectangle "<$jenkins>\nCI Server" as ciServer | ||
} | ||
|
||
rectangle "<$k8s>\nK8s Cluster" as k8s { | ||
rectangle "<$sync>\nGitOps\noperator" as operator | ||
} | ||
rectangle "<$docker>\nOCI Registry" as registry | ||
|
||
user -[#red]> appRepo : push\ncode\n<color:red>+chart | ||
user -[#red]> configRepo : <color:red>push values.yaml per env | ||
appRepo -[hidden]> configRepo | ||
appRepo <-- ciServer : pull | ||
ciServer -[#red]> registry : <color:red>push\n<color:red>chart | ||
ciServer -> registry : push\nimage | ||
configRepo <- ciServer : push new\nimage version | ||
k8s -[#red]> registry : <color:red>pull\n<color:red>chart | ||
k8s --> registry : pull\nimage | ||
k8s -[#red]> configRepo : <color:red>pull\n<color:red>values.yaml | ||
k8s -> k8s : deploy | ||
|
||
|
||
skinparam actor { | ||
BackgroundColor CLOUDOGU_BLUE | ||
BorderColor #16688d | ||
} | ||
|
||
skinparam rectangle { | ||
BackgroundColor CLOUDOGU_BLUE | ||
BorderColor #16688d | ||
FontColor WHITE | ||
backgroundColor<<node>> WHITE | ||
FontColor<<node>> CLOUDOGU_BLUE | ||
} | ||
|
||
@enduml |