Skip to content

Commit

Permalink
Merge pull request #84 from ffe4/master
Browse files Browse the repository at this point in the history
Add Dgraph, JanusGraph, Scylla to onprem.database
  • Loading branch information
mingrammer authored Mar 28, 2020
2 parents d6ea38c + b1e98ed commit 013fb03
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 6 deletions.
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.

0 comments on commit 013fb03

Please sign in to comment.