-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Kubernetes item for C4 Model
- Loading branch information
Showing
801 changed files
with
20,025 additions
and
2 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
|
||
' loads the Item which embeds the element APIServiceBoundary | ||
include('c4k8s/Boundary/APIServiceBoundary') | ||
|
||
' load the c4model package | ||
include('c4model/bootstrap') | ||
APIServiceBoundary('ApiServiceBoundary', 'Api Service Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@enduml |
21 changes: 21 additions & 0 deletions
21
distribution/c4k8s/Boundary/APIServiceBoundary.Remote.puml
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,21 @@ | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution" | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
|
||
' loads the Item which embeds the element APIServiceBoundary | ||
include('c4k8s/Boundary/APIServiceBoundary') | ||
|
||
' load the c4model package | ||
include('c4model/bootstrap') | ||
APIServiceBoundary('ApiServiceBoundary', 'Api Service Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@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,73 @@ | ||
# APIServiceBoundary | ||
|
||
|
||
```text | ||
c4k8s/Boundary/APIServiceBoundary | ||
``` | ||
|
||
```text | ||
include('c4k8s/Boundary/APIServiceBoundary') | ||
``` | ||
|
||
|
||
|
||
| APIServiceBoundary | | ||
| :---: | | ||
| ![illustration for APIServiceBoundary](../../c4k8s/Boundary/APIServiceBoundary.Local.png) | | ||
|
||
|
||
|
||
|
||
## APIServiceBoundary | ||
|
||
### Load remotely | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution" | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
' loads the Item which embeds the element APIServiceBoundary | ||
include('c4k8s/Boundary/APIServiceBoundary') | ||
' load the c4model package | ||
include('c4model/bootstrap') | ||
APIServiceBoundary('ApiServiceBoundary', 'Api Service Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@enduml | ||
``` | ||
|
||
### Load locally | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
' loads the Item which embeds the element APIServiceBoundary | ||
include('c4k8s/Boundary/APIServiceBoundary') | ||
' load the c4model package | ||
include('c4model/bootstrap') | ||
APIServiceBoundary('ApiServiceBoundary', 'Api Service Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@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,5 @@ | ||
' definition of the Item c4k8s/Boundary/APIServiceBoundary | ||
|
||
!procedure APIServiceBoundary($id, $name, $tech="") | ||
C4Boundary('K8s/APIService', 'Boundary', $id, $name, $tech) | ||
!endprocedure |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
|
||
' loads the Item which embeds the element BindingBoundary | ||
include('c4k8s/Boundary/BindingBoundary') | ||
|
||
' load the c4model package | ||
include('c4model/bootstrap') | ||
BindingBoundary('BindingBoundary', 'Binding Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@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,21 @@ | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution" | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
|
||
' loads the Item which embeds the element BindingBoundary | ||
include('c4k8s/Boundary/BindingBoundary') | ||
|
||
' load the c4model package | ||
include('c4model/bootstrap') | ||
BindingBoundary('BindingBoundary', 'Binding Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@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,73 @@ | ||
# BindingBoundary | ||
|
||
|
||
```text | ||
c4k8s/Boundary/BindingBoundary | ||
``` | ||
|
||
```text | ||
include('c4k8s/Boundary/BindingBoundary') | ||
``` | ||
|
||
|
||
|
||
| BindingBoundary | | ||
| :---: | | ||
| ![illustration for BindingBoundary](../../c4k8s/Boundary/BindingBoundary.Local.png) | | ||
|
||
|
||
|
||
|
||
## BindingBoundary | ||
|
||
### Load remotely | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution" | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
' loads the Item which embeds the element BindingBoundary | ||
include('c4k8s/Boundary/BindingBoundary') | ||
' load the c4model package | ||
include('c4model/bootstrap') | ||
BindingBoundary('BindingBoundary', 'Binding Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@enduml | ||
``` | ||
|
||
### Load locally | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
' loads the Item which embeds the element BindingBoundary | ||
include('c4k8s/Boundary/BindingBoundary') | ||
' load the c4model package | ||
include('c4model/bootstrap') | ||
BindingBoundary('BindingBoundary', 'Binding Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@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,5 @@ | ||
' definition of the Item c4k8s/Boundary/BindingBoundary | ||
|
||
!procedure BindingBoundary($id, $name, $tech="") | ||
C4Boundary('K8s/Binding', 'Boundary', $id, $name, $tech) | ||
!endprocedure |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
|
||
' loads the Item which embeds the element CSIDriverBoundary | ||
include('c4k8s/Boundary/CSIDriverBoundary') | ||
|
||
' load the c4model package | ||
include('c4model/bootstrap') | ||
CSIDriverBoundary('CsiDriverBoundary', 'Csi Driver Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@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,21 @@ | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution" | ||
|
||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
|
||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
|
||
' loads the Item which embeds the element CSIDriverBoundary | ||
include('c4k8s/Boundary/CSIDriverBoundary') | ||
|
||
' load the c4model package | ||
include('c4model/bootstrap') | ||
CSIDriverBoundary('CsiDriverBoundary', 'Csi Driver Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@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,73 @@ | ||
# CSIDriverBoundary | ||
|
||
|
||
```text | ||
c4k8s/Boundary/CSIDriverBoundary | ||
``` | ||
|
||
```text | ||
include('c4k8s/Boundary/CSIDriverBoundary') | ||
``` | ||
|
||
|
||
|
||
| CSIDriverBoundary | | ||
| :---: | | ||
| ![illustration for CSIDriverBoundary](../../c4k8s/Boundary/CSIDriverBoundary.Local.png) | | ||
|
||
|
||
|
||
|
||
## CSIDriverBoundary | ||
|
||
### Load remotely | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution" | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
' loads the Item which embeds the element CSIDriverBoundary | ||
include('c4k8s/Boundary/CSIDriverBoundary') | ||
' load the c4model package | ||
include('c4model/bootstrap') | ||
CSIDriverBoundary('CsiDriverBoundary', 'Csi Driver Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@enduml | ||
``` | ||
|
||
### Load locally | ||
```plantuml | ||
@startuml | ||
' configures the library | ||
!global $INCLUSION_MODE="local" | ||
!global $LIB_BASE_LOCATION="../.." | ||
' loads the library's bootstrap | ||
!include $LIB_BASE_LOCATION/bootstrap.puml | ||
' loads the package bootstrap | ||
include('c4k8s/bootstrap') | ||
' loads the Item which embeds the element CSIDriverBoundary | ||
include('c4k8s/Boundary/CSIDriverBoundary') | ||
' load the c4model package | ||
include('c4model/bootstrap') | ||
CSIDriverBoundary('CsiDriverBoundary', 'Csi Driver Boundary') { | ||
note as note | ||
the content of the boundary | ||
end note | ||
} | ||
@enduml | ||
``` | ||
|
Oops, something went wrong.