Skip to content

Commit 16fc697

Browse files
gabriel-tessiermingrammertvqphuoc01tb102122dependabot[bot]
authored andcommitted
Is there a node for Kubernetes itself? mingrammer#979 (mingrammer#1039)
* [979] Add icons * fix: icons size * bump: up to version 0.24.0 * Update version of codeql-analysis.yml (mingrammer#1035) v2 will deprecate soon so we will move to v3 🌴 https://github.blog/changelog/2024-01-12-code-scanning-deprecation-of-codeql-action-v2/ * Upgrade for 3.12/3.13 (mingrammer#972) * fix tests (mingrammer#1050) * chore(deps): bump jinja2 from 3.1.2 to 3.1.4 (mingrammer#1037) * ci(test): add test trigger path * ci(test): add test trigger path * fix: update poetry lock * fix: keep the backward compatability for type hint (mingrammer#1052) * Update installation command for mingrammer/round to use 'go install' with the latest version instead of 'go get'. (mingrammer#1057) * fix(node): change elixir language image to one with no background (mingrammer#976) * fix elixir image * fix website elixir image * Add diagrams.onprem.network.Mikrotik (mingrammer#1058) * issue-982: add azure speech to text and Azure OpenAI (mingrammer#1061) * Add Transit Gateway Attachment icon, its alias and Internet Gateway alias. (mingrammer#1038) * issue-1056: add crowdstrike (mingrammer#1062) * fix typo for crowdstrike (mingrammer#1063) * Updated Legacy ENV Path (mingrammer#1008) * Minor Change * fix: pin python version + fix font path * More recent Python version --------- Co-authored-by: tessier <tessier@luxeys.com> * autogen.sh * Generate node * Revert build as node and set in _init * Clean generated files --------- Co-authored-by: mingrammer <mingrammer@gmail.com> Co-authored-by: Phuoc Tran <57540319+tvqphuoc01@users.noreply.github.com> Co-authored-by: Tobias Bruckert <62531735+tb102122@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nguyễn Đức Chiến <nobi@nobidev.com> Co-authored-by: Gabriel Oliveira <gabrieloliver8991@gmail.com> Co-authored-by: laiminhtrung1997 <68812829+laiminhtrung1997@users.noreply.github.com> Co-authored-by: Abhishek Jadhav <abhishek.jadhav64@gmail.com>
1 parent 5fc77dd commit 16fc697

46 files changed

Lines changed: 64 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

diagrams/alibabacloud/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _AlibabaCloud(Node):
1010
_icon_dir = "resources/alibabacloud"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class AlibabaCloud(_AlibabaCloud):
16+
_icon = "alibabacloud.png"

diagrams/aws/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _AWS(Node):
1010
_icon_dir = "resources/aws"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class AWS(_AWS):
16+
_icon = "aws.png"

diagrams/azure/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _Azure(Node):
1010
_icon_dir = "resources/azure"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class Azure(_Azure):
16+
_icon = "azure.png"

diagrams/digitalocean/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _DigitalOcean(Node):
1010
_icon_dir = "resources/digitalocean"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class DigitalOcean(_DigitalOcean):
16+
_icon = "digitalocean.png"

diagrams/elastic/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _Elastic(Node):
1010
_icon_dir = "resources/elastic"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class Elastic(_Elastic):
16+
_icon = "elastic.png"

diagrams/firebase/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _Firebase(Node):
1010
_icon_dir = "resources/firebase"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class Firebase(_Firebase):
16+
_icon = "firebase.png"

diagrams/gcp/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _GCP(Node):
1010
_icon_dir = "resources/gcp"
1111

1212
fontcolor = "#2d3436"
13+
14+
15+
class GCP(_GCP):
16+
_icon = "gcp.png"

diagrams/generic/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _Generic(Node):
1010
_icon_dir = "resources/generic"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class Generic(_Generic):
16+
_icon = "generic.png"

diagrams/ibm/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _IBM(Node):
1010
_icon_dir = "resources/ibm"
1111

1212
fontcolor = "#ffffff"
13+
14+
15+
class IBM(_IBM):
16+
_icon = "ibm.png"

diagrams/k8s/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ class _K8S(Node):
1010
_icon_dir = "resources/k8s"
1111

1212
fontcolor = "#2d3436"
13+
14+
15+
class K8S(_K8S):
16+
_icon = "k8s.png"

0 commit comments

Comments
 (0)