Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Dgraph, JanusGraph, Scylla to onprem.database #84

Merged
merged 1 commit into from
Mar 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
"Couchdb": "CouchDB",
"Hbase": "HBase",
"Influxdb": "InfluxDB",
"Janusgraph": "JanusGraph",
"Mariadb": "MariaDB",
"Mongodb": "MongoDB",
"Mssql": "MSSQL",
Expand Down
13 changes: 13 additions & 0 deletions diagrams/onprem/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ class Couchdb(_Database):
_icon = "couchdb.png"


class Dgraph(_Database):
_icon = "dgraph.png"


class Hbase(_Database):
_icon = "hbase.png"

Expand All @@ -28,6 +32,10 @@ class Influxdb(_Database):
_icon = "influxdb.png"


class Janusgraph(_Database):
_icon = "janusgraph.png"


class Mariadb(_Database):
_icon = "mariadb.png"

Expand Down Expand Up @@ -56,12 +64,17 @@ class Postgresql(_Database):
_icon = "postgresql.png"


class Scylla(_Database):
_icon = "scylla.png"


# Aliases

CockroachDB = Cockroachdb
CouchDB = Couchdb
HBase = Hbase
InfluxDB = Influxdb
JanusGraph = Janusgraph
MariaDB = Mariadb
MongoDB = Mongodb
MSSQL = Mssql
Expand Down
15 changes: 9 additions & 6 deletions docs/nodes/onprem.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ Node classes list of onprem provider.
- **diagrams.onprem.database.Cassandra**
- **diagrams.onprem.database.Cockroachdb**, **CockroachDB** (alias)
- **diagrams.onprem.database.Couchdb**, **CouchDB** (alias)
- **diagrams.onprem.database.Dgraph**
- **diagrams.onprem.database.Hbase**, **HBase** (alias)
- **diagrams.onprem.database.Influxdb**, **InfluxDB** (alias)
- **diagrams.onprem.database.Janusgraph**, **JanusGraph** (alias)
- **diagrams.onprem.database.Mariadb**, **MariaDB** (alias)
- **diagrams.onprem.database.Mongodb**, **MongoDB** (alias)
- **diagrams.onprem.database.Mssql**, **MSSQL** (alias)
- **diagrams.onprem.database.Mysql**, **MySQL** (alias)
- **diagrams.onprem.database.Neo4J**
- **diagrams.onprem.database.Oracle**
- **diagrams.onprem.database.Postgresql**, **PostgreSQL** (alias)
- **diagrams.onprem.database.Scylla**

## onprem.security

Expand Down Expand Up @@ -76,6 +79,12 @@ Node classes list of onprem provider.
- **diagrams.onprem.compute.Nomad**
- **diagrams.onprem.compute.Server**

## onprem.vcs

- **diagrams.onprem.vcs.Git**
- **diagrams.onprem.vcs.Github**
- **diagrams.onprem.vcs.Gitlab**

## onprem.workflow

- **diagrams.onprem.workflow.Airflow**
Expand Down Expand Up @@ -124,9 +133,3 @@ Node classes list of onprem provider.
- **diagrams.onprem.analytics.Hive**
- **diagrams.onprem.analytics.Spark**
- **diagrams.onprem.analytics.Storm**

## onprem.vcs

- **diagrams.onprem.vcs.Git**
- **diagrams.onprem.vcs.Github**
- **diagrams.onprem.vcs.Gitlab**
Binary file added resources/onprem/database/dgraph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/onprem/database/janusgraph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/onprem/database/scylla.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.